summaryrefslogtreecommitdiff
path: root/contrib/tzcode
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2020-05-22 15:30:14 +0000
committerConrad Meyer <cem@FreeBSD.org>2020-05-22 15:30:14 +0000
commit33af26323013eeffb4b7b1cb78ce5258486f9c57 (patch)
tree70693d5dc72a1e853d5a6f0daa0dc031f26ae1e0 /contrib/tzcode
parent40b12a0b780ce34d0872a62aff8c12ffdc52b75b (diff)
downloadsrc-test-33af26323013eeffb4b7b1cb78ce5258486f9c57.tar.gz
src-test-33af26323013eeffb4b7b1cb78ce5258486f9c57.zip
ctime.3: Use ASCII asterisks for C, not special unicode math glyphs
PR: 246656 Reported by: danfe
Notes
Notes: svn path=/head/; revision=361385
Diffstat (limited to 'contrib/tzcode')
-rw-r--r--contrib/tzcode/stdtime/ctime.324
1 files changed, 12 insertions, 12 deletions
diff --git a/contrib/tzcode/stdtime/ctime.3 b/contrib/tzcode/stdtime/ctime.3
index 673a3ac7ad366..8fa2f13d6379f 100644
--- a/contrib/tzcode/stdtime/ctime.3
+++ b/contrib/tzcode/stdtime/ctime.3
@@ -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 definition are in the
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