Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 May 2020 15:30:14 +0000 (UTC)
From:      Conrad Meyer <cem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r361385 - head/contrib/tzcode/stdtime
Message-ID:  <202005221530.04MFUEMt058018@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cem
Date: Fri May 22 15:30:14 2020
New Revision: 361385
URL: https://svnweb.freebsd.org/changeset/base/361385

Log:
  ctime.3: Use ASCII asterisks for C, not special unicode math glyphs
  
  PR:		246656
  Reported by:	danfe

Modified:
  head/contrib/tzcode/stdtime/ctime.3

Modified: head/contrib/tzcode/stdtime/ctime.3
==============================================================================
--- head/contrib/tzcode/stdtime/ctime.3	Fri May 22 14:46:23 2020	(r361384)
+++ head/contrib/tzcode/stdtime/ctime.3	Fri May 22 15:30:14 2020	(r361385)
@@ -30,7 +30,7 @@
 .\"     From: @(#)ctime.3	8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd January 2, 1999
+.Dd May 22, 2020
 .Dt CTIME 3
 .Os
 .Sh NAME
@@ -266,17 +266,17 @@ External declarations as well as the tm structure defi
 include file.
 The tm structure includes at least the following fields:
 .Bd -literal -offset indent
-int tm_sec;	/\(** seconds (0 - 60) \(**/
-int tm_min;	/\(** minutes (0 - 59) \(**/
-int tm_hour;	/\(** hours (0 - 23) \(**/
-int tm_mday;	/\(** day of month (1 - 31) \(**/
-int tm_mon;	/\(** month of year (0 - 11) \(**/
-int tm_year;	/\(** year \- 1900 \(**/
-int tm_wday;	/\(** day of week (Sunday = 0) \(**/
-int tm_yday;	/\(** day of year (0 - 365) \(**/
-int tm_isdst;	/\(** is summer time in effect? \(**/
-char \(**tm_zone;	/\(** abbreviation of timezone name \(**/
-long tm_gmtoff;	/\(** offset from UTC in seconds \(**/
+int tm_sec;	/* seconds (0 - 60) */
+int tm_min;	/* minutes (0 - 59) */
+int tm_hour;	/* hours (0 - 23) */
+int tm_mday;	/* day of month (1 - 31) */
+int tm_mon;	/* month of year (0 - 11) */
+int tm_year;	/* year \- 1900 */
+int tm_wday;	/* day of week (Sunday = 0) */
+int tm_yday;	/* day of year (0 - 365) */
+int tm_isdst;	/* is summer time in effect? */
+char *tm_zone;	/* abbreviation of timezone name */
+long tm_gmtoff;	/* offset from UTC in seconds */
 .Ed
 .Pp
 The



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005221530.04MFUEMt058018>