summaryrefslogtreecommitdiff
path: root/trunk/wince/sys/utime.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/wince/sys/utime.h')
-rw-r--r--trunk/wince/sys/utime.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/trunk/wince/sys/utime.h b/trunk/wince/sys/utime.h
deleted file mode 100644
index b644f02a61..0000000000
--- a/trunk/wince/sys/utime.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef SYS_UTIME_H
-#define SYS_UTIME_H 1
-
-#include <time.h>
-
-struct utimbuf
-{
- time_t actime;
- time_t modtime;
-};
-
-#define _utimbuf utimbuf
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int utime(const char *f, struct utimbuf *t);
-
-#ifdef __cplusplus
-};
-#endif
-
-//#define utime _utime
-
-#endif