summaryrefslogtreecommitdiff
path: root/wince/sys/timeb.h
diff options
context:
space:
mode:
authoruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-14 05:27:35 +0000
committeruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-14 05:27:35 +0000
commit009f78761d729b18ac34749136f1474d89d54a69 (patch)
treec26991efff67368cda5153751d797893b796fc80 /wince/sys/timeb.h
parentc79e87783658aa264c3939497a1855942b0e6c5b (diff)
* wince/sys : add stat.c, stat.h, timeb.c, timeb.h,
types.h, utime.c, utime.h * wince/dll.mak : object file name changed. * wince/io.c : add empty dup2(). * wince/io.h : add dup2 definition. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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