repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
time
/
gmtime_r.c
blob
fb39238d37c1618c43ef9e7defec5483192e7461
1
/*
2
* gmtime_r.c
3
*/
4
5
#include <time.h>
6
#include
"local.h"
7
8
struct
tm
*
9
_DEFUN
(
gmtime_r
, (
tim_p
,
res
),
10
_CONST
time_t
*
tim_p _AND
11
struct
tm
*
res
)
12
{
13
return
(
_mktm_r
(
tim_p
,
res
,
1
));
14
}