aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-06 17:23:16 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:33 +0200
commitfd704aa0db21aa03938b824b409107504d7c3482 (patch)
tree8323ffe4a0e1550d9f29531cf2f2a5f0c433fbed /include/mingw.h
parent65eefca7c9e72f9ed7363cd08a3cea83dfea5b40 (diff)
downloadbusybox-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.h2
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 */
323int mingw_utime(const char *file_name, const struct utimbuf *times); 323int mingw_utime(const char *file_name, const struct utimbuf *times);
324NOIMPL(utimes,const char *filename UNUSED_PARAM, const struct timeval times[2] UNUSED_PARAM); 324int utimes(const char *file_name, const struct timeval times[2]);
325 325
326#define utime mingw_utime 326#define utime mingw_utime
327 327