URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libc/] [time/] [ctime_r.c] - Rev 277
Go to most recent revision | Compare with Previous | Blame | View Log
/* * ctime_r.c */ #include <time.h> char * _DEFUN (ctime_r, (tim_p, result), _CONST time_t * tim_p _AND char * result) { struct tm tm; return asctime_r (localtime_r (tim_p, &tm), result); }
Go to most recent revision | Compare with Previous | Blame | View Log