diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-05 19:36:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-05 19:36:55 +0000 |
commit | be860ede3db0a0588b73d8cde106b68305941a5e (patch) | |
tree | d06a9e46a182c8ee8a4a6c99e0f3d84865caa6f6 /lib/libc/time/ctime.3 | |
parent | d53f4159457cfcd82fdf64b43f2cf677b596714d (diff) |
ctime takes a pointer to time_t not long. Correct in prototype, wrong in description
Diffstat (limited to 'lib/libc/time/ctime.3')
-rw-r--r-- | lib/libc/time/ctime.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/time/ctime.3 b/lib/libc/time/ctime.3 index aa32c1f2846..7df91acf968 100644 --- a/lib/libc/time/ctime.3 +++ b/lib/libc/time/ctime.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ctime.3,v 1.8 1997/06/06 21:12:10 kstailey Exp $ +.\" $OpenBSD: ctime.3,v 1.9 1998/07/05 19:36:54 millert Exp $ .TH CTIME 3 .SH NAME asctime, ctime, difftime, gmtime, localtime, mktime \- convert date and time to ASCII @@ -32,7 +32,7 @@ asctime, ctime, difftime, gmtime, localtime, mktime \- convert date and time to .fi .SH DESCRIPTION .I Ctime\^ -converts a long integer, pointed to by +converts a time_t, pointed to by .IR clock , representing the time in seconds since 00:00:00 UTC, 1970-01-01, |