fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / time / gmtime_r.c
blobfb39238d37c1618c43ef9e7defec5483192e7461
1 /*
2 * gmtime_r.c
3 */
5 #include <time.h>
6 #include "local.h"
8 struct tm *
9 _DEFUN (gmtime_r, (tim_p, res),
10 _CONST time_t * tim_p _AND
11 struct tm *res)
13 return (_mktm_r (tim_p, res, 1));