Move orphaned information to tzset(3).
This commit is contained in:
parent
ca3d9c7fa7
commit
b72e2b11b8
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: ctime.3,v 1.15 1999/05/04 15:34:50 kleink Exp $
|
||||
.\" $NetBSD: ctime.3,v 1.16 2000/06/05 11:56:13 kleink Exp $
|
||||
.TH CTIME 3
|
||||
.SH NAME
|
||||
asctime, asctime_r, ctime, ctime_r, difftime, gmtime, gmtime_r, localtime, localtime_r, mktime \- convert date and time to ASCII
|
||||
|
@ -10,8 +10,6 @@ Standard C Library (libc, -lc)
|
|||
.PP
|
||||
.B extern char *tzname[2];
|
||||
.PP
|
||||
.B void tzset();
|
||||
.PP
|
||||
.B char *ctime(const time_t *clock);
|
||||
.B char *ctime_r(const time_t *clock, char *buf);
|
||||
.PP
|
||||
|
@ -233,10 +231,6 @@ mktime()
|
|||
functions conform to
|
||||
ANSI X3.159-1989 (``ANSI C'').
|
||||
The
|
||||
tzset()
|
||||
function conforms to
|
||||
IEEE Std1003.1-1988 (``POSIX'').
|
||||
The
|
||||
ctime_r(),
|
||||
asctime_r(),
|
||||
localtime_r()
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
.\" $NetBSD: tzset.3,v 1.9 1997/06/18 01:12:58 jtc Exp $
|
||||
.\" $NetBSD: tzset.3,v 1.10 2000/06/05 11:56:13 kleink Exp $
|
||||
.TH TZSET 3
|
||||
.SH NAME
|
||||
tzset \- initialize time conversion information
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
.B void tzset()
|
||||
.B void tzset(void)
|
||||
.PP
|
||||
.fi
|
||||
.SH DESCRIPTION
|
||||
|
@ -234,4 +234,9 @@ ctime(3),
|
|||
strftime(3),
|
||||
time(3),
|
||||
tzfile(5)
|
||||
.SH STANDARDS
|
||||
The
|
||||
tzset()
|
||||
function conforms to
|
||||
IEEE Std1003.1-1988 (``POSIX'').
|
||||
.\" @(#)newtzset.3 7.5
|
||||
|
|
Loading…
Reference in New Issue