2002-09-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/time/ctime.c: Fix prototype documentation.
This commit is contained in:
parent
f4b098d95e
commit
6e1dfd2d96
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue