diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 06:56:40 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 18:39:57 +1000 |
commit | 4e52a794ba999c0de0a166ae5e8dac2e67b93964 (patch) | |
tree | 69a7ee5e2163855ee321a33ad352e72aa0447c88 /include | |
parent | 487a13c7c8e23268145c3dd88317cd8ea547c901 (diff) | |
download | busybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.tar.gz busybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.tar.bz2 busybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.zip |
win32: add localtime_r()
Diffstat (limited to 'include')
-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 a646af334..9bca3cf35 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -222,7 +222,7 @@ NOIMPL(waitpid,pid_t pid UNUSED_PARAM, int *status UNUSED_PARAM, unsigned option | |||
222 | * time.h | 222 | * time.h |
223 | */ | 223 | */ |
224 | struct tm *gmtime_r(const time_t *timep, struct tm *result); | 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 | struct tm *localtime_r(const time_t *timep, struct tm *result); |
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 | ||
228 | /* | 228 | /* |