Sign in
android
/
platform
/
ndk
/
06c762d797782f574e40a956613c4e19c504b6c1
/
.
/
tests
/
build
/
timegm
/
jni
/
timetest.cpp
blob: 24876f891650236f9dcde1357df0d12caea61ff8 [
file
] [
log
] [
blame
]
#include
<time.h>
time_t
timegm_wrapper
(
struct
tm
*
t
)
{
return
timegm
(
t
);
}
time_t
timelocal_wrapper
(
struct
tm
*
t
)
{
return
timelocal
(
t
);
}