diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-06 17:23:16 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-20 19:14:33 +0200 |
commit | fd704aa0db21aa03938b824b409107504d7c3482 (patch) | |
tree | 8323ffe4a0e1550d9f29531cf2f2a5f0c433fbed /include/mingw.h | |
parent | 65eefca7c9e72f9ed7363cd08a3cea83dfea5b40 (diff) | |
download | busybox-w32-fd704aa0db21aa03938b824b409107504d7c3482.tar.gz busybox-w32-fd704aa0db21aa03938b824b409107504d7c3482.tar.bz2 busybox-w32-fd704aa0db21aa03938b824b409107504d7c3482.zip |
win32: add utimes and fix utime(file,NULL)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Diffstat (limited to 'include/mingw.h')
-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 8931e719e..7ec21b72d 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -321,7 +321,7 @@ NOIMPL(vfork,void); | |||
321 | * utime.h | 321 | * utime.h |
322 | */ | 322 | */ |
323 | int mingw_utime(const char *file_name, const struct utimbuf *times); | 323 | int mingw_utime(const char *file_name, const struct utimbuf *times); |
324 | NOIMPL(utimes,const char *filename UNUSED_PARAM, const struct timeval times[2] UNUSED_PARAM); | 324 | int utimes(const char *file_name, const struct timeval times[2]); |
325 | 325 | ||
326 | #define utime mingw_utime | 326 | #define utime mingw_utime |
327 | 327 | ||