URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [time/] [ctime_r.c] - Rev 326
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