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/] [gmtime_r.c] - Rev 252
Go to most recent revision | Compare with Previous | Blame | View Log
/* * gmtime_r.c */ #include <time.h> #include "local.h" struct tm * _DEFUN (gmtime_r, (tim_p, res), _CONST time_t * tim_p _AND struct tm *res) { return (_mktm_r (tim_p, res, 1)); }
Go to most recent revision | Compare with Previous | Blame | View Log