aboutsummaryrefslogtreecommitdiff
path: root/win32
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-09-10 18:39:57 +1000
commit4e52a794ba999c0de0a166ae5e8dac2e67b93964 (patch)
tree69a7ee5e2163855ee321a33ad352e72aa0447c88 /win32
parent487a13c7c8e23268145c3dd88317cd8ea547c901 (diff)
downloadbusybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.tar.gz
busybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.tar.bz2
busybox-w32-4e52a794ba999c0de0a166ae5e8dac2e67b93964.zip
win32: add localtime_r()
Diffstat (limited to 'win32')
-rw-r--r--win32/mingw.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index 1a476651a..9ce7bc3ff 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -69,3 +69,10 @@ struct tm *gmtime_r(const time_t *timep, struct tm *result)
69 memcpy(result, gmtime(timep), sizeof(struct tm)); 69 memcpy(result, gmtime(timep), sizeof(struct tm));
70 return result; 70 return result;
71} 71}
72
73struct tm *localtime_r(const time_t *timep, struct tm *result)
74{
75 /* localtime() in MSVCRT.DLL is thread-safe, but not reentrant */
76 memcpy(result, localtime(timep), sizeof(struct tm));
77 return result;
78}