diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-29 22:09:59 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:28:30 +1000 |
commit | 803ebf09045d48675938ab60c9721f7f22b97a06 (patch) | |
tree | c54f18e64448390e2a7b6d9a4649bd7a2eea3034 /include | |
parent | 3678ddbdcba93679711417204c1164d47c9a2b74 (diff) | |
download | busybox-w32-803ebf09045d48675938ab60c9721f7f22b97a06.tar.gz busybox-w32-803ebf09045d48675938ab60c9721f7f22b97a06.tar.bz2 busybox-w32-803ebf09045d48675938ab60c9721f7f22b97a06.zip |
win32: add strptime()
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 5294d9d6c..a97c347e1 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -250,7 +250,7 @@ int waitpid(pid_t pid, int *status, unsigned options); | |||
250 | */ | 250 | */ |
251 | struct tm *gmtime_r(const time_t *timep, struct tm *result); | 251 | struct tm *gmtime_r(const time_t *timep, struct tm *result); |
252 | struct tm *localtime_r(const time_t *timep, struct tm *result); | 252 | struct tm *localtime_r(const time_t *timep, struct tm *result); |
253 | IMPL(strptime,char*,NULL,const char *s UNUSED_PARAM, const char *format UNUSED_PARAM, struct tm *tm UNUSED_PARAM); | 253 | char *strptime(const char *s, const char *format, struct tm *tm); |
254 | 254 | ||
255 | /* | 255 | /* |
256 | * unistd.h | 256 | * unistd.h |