2002-09-24 Jeff Johnston <jjohnstn@redhat.com>

* libc/time/ctime.c: Fix prototype documentation.
This commit is contained in:
Jeff Johnston 2002-09-24 21:26:45 +00:00
parent f4b098d95e
commit 6e1dfd2d96
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-09-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/time/ctime.c: Fix prototype documentation.
2002-09-24 Corinna Vinschen <corinna@vinschen.de>
* libc/include/sys/errno.h: Add EOVERFLOW.

View File

@ -12,15 +12,16 @@ INDEX
ANSI_SYNOPSIS
#include <time.h>
char *ctime(time_t <[clock]>);
char *ctime_r(time_t <[clock]>, char *<[buf]>);
char *ctime(const time_t *<[clock]>);
char *ctime_r(const time_t *<[clock]>, char *<[buf]>);
TRAD_SYNOPSIS
#include <time.h>
char *ctime(<[clock]>)
time_t <[clock]>;
time_t *<[clock]>;
char *ctime_r(<[clock]>, <[buf]>)
time_t <[clock]>;
time_t *<[clock]>;
char *<[buf]>;
DESCRIPTION