URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [time/] [ctime_r.c] - Rev 39
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