]> sourceware.org Git - newlib-cygwin.git/commitdiff
2002-09-24 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Tue, 24 Sep 2002 21:26:45 +0000 (21:26 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Tue, 24 Sep 2002 21:26:45 +0000 (21:26 +0000)
        * libc/time/ctime.c: Fix prototype documentation.

newlib/ChangeLog
newlib/libc/time/ctime.c

index 7c6458e4b3de1de53dcf0b42b7326c5a2788eed5..90e5604d9b3f229c3902b8651605b25022730e90 100644 (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.
index e8ccc144a86496afb981e76a5d0b178e2e4b758e..63954c6404f184f0b68fff6de11d194657f3bdc5 100644 (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
This page took 0.040535 seconds and 5 git commands to generate.