diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 06:56:24 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-20 19:14:02 +0200 |
commit | df414e9d639a8c1253cfb6225609e22eed91150a (patch) | |
tree | 704fcd569be8a7e974a57aa198036b6da8e083f0 /include/mingw.h | |
parent | 5963dfebf78dfb59bcb3914bd34ba78113537c4a (diff) | |
download | busybox-w32-df414e9d639a8c1253cfb6225609e22eed91150a.tar.gz busybox-w32-df414e9d639a8c1253cfb6225609e22eed91150a.tar.bz2 busybox-w32-df414e9d639a8c1253cfb6225609e22eed91150a.zip |
win32: add gmtime_r()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index b946d3d81..27d1135d3 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -221,7 +221,7 @@ NOIMPL(waitpid,pid_t pid UNUSED_PARAM, int *status UNUSED_PARAM, unsigned option | |||
221 | /* | 221 | /* |
222 | * time.h | 222 | * time.h |
223 | */ | 223 | */ |
224 | IMPL(gmtime_r,struct tm *,NULL,const time_t *timep UNUSED_PARAM, struct tm *result UNUSED_PARAM); | 224 | struct tm *gmtime_r(const time_t *timep, struct tm *result); |
225 | IMPL(localtime_r,struct tm *,NULL,const time_t *timep UNUSED_PARAM, struct tm *result UNUSED_PARAM); | 225 | IMPL(localtime_r,struct tm *,NULL,const time_t *timep UNUSED_PARAM, struct tm *result UNUSED_PARAM); |
226 | IMPL(strptime,char*,NULL,const char *s UNUSED_PARAM, const char *format UNUSED_PARAM, struct tm *tm UNUSED_PARAM); | 226 | IMPL(strptime,char*,NULL,const char *s UNUSED_PARAM, const char *format UNUSED_PARAM, struct tm *tm UNUSED_PARAM); |
227 | 227 | ||