summaryrefslogtreecommitdiff
path: root/trunk/wince/sys/timeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/wince/sys/timeb.h')
-rw-r--r--trunk/wince/sys/timeb.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/trunk/wince/sys/timeb.h b/trunk/wince/sys/timeb.h
deleted file mode 100644
index e051b9058c..0000000000
--- a/trunk/wince/sys/timeb.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef SYS_TIMEB_H
-#define SYS_TIMEB_H 1
-
-#include <sys/types.h>
-
-struct _timeb {
- time_t time;
- unsigned short millitm;
- short timezone;
- short dstflag;
-};
-
-#define timeb _timeb
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int ftime(struct timeb *tp);
-
-#ifdef __cplusplus
-};
-#endif
-
-
-#endif