Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
refs/heads/master
/
.
/
src
/
newlib
/
libgloss
/
mn10300
/
time.c
blob: 4528631480e46a1cb2868abdbcb9830e0664aac3 [
file
] [
log
] [
blame
] [
edit
]
#include
<_ansi.h>
#include
<sys/types.h>
#include
<sys/stat.h>
#include
"trap.h"
time_t
time
(
time_t
*
tloc
)
{
time_t
res
;
res
=
TRAP0
(
SYS_time
,
0
,
0
,
0
);
if
(
tloc
)
*
tloc
=
res
;
return
res
;
}