diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-24 21:26:45 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-24 21:26:45 +0000 |
commit | 6e1dfd2d96fd0698e0c3ddf9d08299653d08d2c9 (patch) | |
tree | 035175ae617f3884b76313370e0912c528c04fa4 /newlib/libc/time/ctime.c | |
parent | f4b098d95efc7d20fc02bf54987c8de8cc1cccef (diff) | |
download | cygnal-6e1dfd2d96fd0698e0c3ddf9d08299653d08d2c9.tar.gz cygnal-6e1dfd2d96fd0698e0c3ddf9d08299653d08d2c9.tar.bz2 cygnal-6e1dfd2d96fd0698e0c3ddf9d08299653d08d2c9.zip |
2002-09-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/time/ctime.c: Fix prototype documentation.
Diffstat (limited to 'newlib/libc/time/ctime.c')
-rw-r--r-- | newlib/libc/time/ctime.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/newlib/libc/time/ctime.c b/newlib/libc/time/ctime.c index e8ccc144a..63954c640 100644 --- a/newlib/libc/time/ctime.c +++ b/newlib/libc/time/ctime.c @@ -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 |