This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

ctime() man entry


Hi,

The man and info documentation for ctime() (at least under Cygwin)
are incorrect:

*Synopsis*
     #include <time.h>
     char *ctime(time_t CLOCK);
     char *ctime_r(time_t CLOCK, char *BUF);

they should show something like this:

*Synopsis*
     #include <time.h>
     char *ctime(const time_t *timep);
     char *ctime_r(const time_t *timep, char *BUF);

Regards,
Doug Wyatt



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]