diff options
author | Ron Yorston <rmy@pobox.com> | 2014-01-19 22:01:17 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2014-01-19 22:01:17 +0000 |
commit | 9b6a1210733c8d069cd595d37809062ede2eca68 (patch) | |
tree | 510ad76cbd13e3a44cc8d0968afb18d3005f94ec | |
parent | ae1b385859a4d1db78f077478f7aeff904d84453 (diff) | |
download | busybox-w32-9b6a1210733c8d069cd595d37809062ede2eca68.tar.gz busybox-w32-9b6a1210733c8d069cd595d37809062ede2eca68.tar.bz2 busybox-w32-9b6a1210733c8d069cd595d37809062ede2eca68.zip |
date: actually use modified strftime
-rw-r--r-- | include/mingw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index d6eb5d22c..11edc449e 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -301,6 +301,9 @@ int waitpid(pid_t pid, int *status, unsigned options); | |||
301 | struct tm *gmtime_r(const time_t *timep, struct tm *result); | 301 | struct tm *gmtime_r(const time_t *timep, struct tm *result); |
302 | struct tm *localtime_r(const time_t *timep, struct tm *result); | 302 | struct tm *localtime_r(const time_t *timep, struct tm *result); |
303 | char *strptime(const char *s, const char *format, struct tm *tm); | 303 | char *strptime(const char *s, const char *format, struct tm *tm); |
304 | size_t mingw_strftime(const char *buf, size_t max, const char *format, const struct tm *tm); | ||
305 | |||
306 | #define strftime mingw_strftime | ||
304 | 307 | ||
305 | /* | 308 | /* |
306 | * unistd.h | 309 | * unistd.h |