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