aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/missing/sys/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/missing/sys/time.h')
-rw-r--r--backends/wince/missing/sys/time.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/backends/wince/missing/sys/time.h b/backends/wince/missing/sys/time.h
new file mode 100644
index 0000000000..ded29bb009
--- /dev/null
+++ b/backends/wince/missing/sys/time.h
@@ -0,0 +1,10 @@
+/* Header is not present in Windows CE SDK */
+
+struct timeval
+{
+ int tv_sec;
+ int tv_usec;
+};
+
+void gettimeofday(struct timeval* tp, void* dummy);
+void usleep(long usec);