summaryrefslogtreecommitdiff
path: root/wince/sys/timeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'wince/sys/timeb.h')
-rw-r--r--wince/sys/timeb.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/wince/sys/timeb.h b/wince/sys/timeb.h
new file mode 100644
index 0000000000..e051b9058c
--- /dev/null
+++ b/wince/sys/timeb.h
@@ -0,0 +1,26 @@
+#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