summaryrefslogtreecommitdiff
path: root/include
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-09-10 19:28:27 +1000
commitda42856b7970e9221216c88926b626f8efda4f51 (patch)
tree30b51aed71a6e90fa2f488be7f862c0523d9da30 /include
parentf630faee2045fa28c61a3cea760ab8a9b65c1bb3 (diff)
downloadbusybox-w32-da42856b7970e9221216c88926b626f8efda4f51.tar.gz
busybox-w32-da42856b7970e9221216c88926b626f8efda4f51.tar.bz2
busybox-w32-da42856b7970e9221216c88926b626f8efda4f51.zip
win32: add utimes and fix utime(file,NULL)
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index c2953c390..5294d9d6c 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -306,7 +306,7 @@ NOIMPL(vfork,void);
306 * utime.h 306 * utime.h
307 */ 307 */
308int mingw_utime(const char *file_name, const struct utimbuf *times); 308int mingw_utime(const char *file_name, const struct utimbuf *times);
309NOIMPL(utimes,const char *filename UNUSED_PARAM, const struct timeval times[2] UNUSED_PARAM); 309int utimes(const char *file_name, const struct timeval times[2]);
310 310
311#define utime mingw_utime 311#define utime mingw_utime
312 312