aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 06:56:40 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:03 +0200
commit0739e40da6b3bdde0c331f0ec060a68cc8e9963c (patch)
treee5961f0347c0f67ecb3595a70068202c06f80d1a /include/mingw.h
parentdf414e9d639a8c1253cfb6225609e22eed91150a (diff)
downloadbusybox-w32-0739e40da6b3bdde0c331f0ec060a68cc8e9963c.tar.gz
busybox-w32-0739e40da6b3bdde0c331f0ec060a68cc8e9963c.tar.bz2
busybox-w32-0739e40da6b3bdde0c331f0ec060a68cc8e9963c.zip
win32: add localtime_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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 27d1135d3..9e6ddd1d8 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 */
224struct tm *gmtime_r(const time_t *timep, struct tm *result); 224struct tm *gmtime_r(const time_t *timep, struct tm *result);
225IMPL(localtime_r,struct tm *,NULL,const time_t *timep UNUSED_PARAM, struct tm *result UNUSED_PARAM); 225struct tm *localtime_r(const time_t *timep, struct tm *result);
226IMPL(strptime,char*,NULL,const char *s UNUSED_PARAM, const char *format UNUSED_PARAM, struct tm *tm UNUSED_PARAM); 226IMPL(strptime,char*,NULL,const char *s UNUSED_PARAM, const char *format UNUSED_PARAM, struct tm *tm UNUSED_PARAM);
227 227
228/* 228/*