Sign in
chromium
/
native_client
/
nacl-newlib
/
refs/heads/upstream/master
/
.
/
newlib
/
libc
/
time
/
gmtime_r.c
blob: 14c9c76405d7b93211a85892c331422001c922df [
file
] [
log
] [
blame
] [
edit
]
/*
* gmtime_r.c
*/
#include
<time.h>
#include
"local.h"
struct
tm
*
_DEFUN
(
gmtime_r
,
(
tim_p
,
res
),
_CONST
time_t
*
__restrict tim_p _AND
struct
tm
*
__restrict res
)
{
return
(
_mktm_r
(
tim_p
,
res
,
1
));
}