aboutsummaryrefslogtreecommitdiffstats
path: root/wince/sys/types.h
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:48:20 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:48:20 +0000
commita8c3540b32d7621c183627d7cc198f4b24798387 (patch)
tree602e5c4e6a866436cf999e994d4590df9c89fb2a /wince/sys/types.h
parent642e08187927b2debaa0d84a112123043f0f7912 (diff)
downloadruby-a8c3540b32d7621c183627d7cc198f4b24798387.tar.gz
* dln.c: Ruby no longer supports Windows CE.
* eval.c: ditto. * include/ruby/defines.h: ditto. * include/ruby/win32.h: ditto. * ruby.c: ditto. * strftime.c: ditto. * win32/Makefile.sub: ditto. * win32/win32.c: ditto. * ext/tk/extconf.rb: ditto. * lib/fileutils.rb: ditto. * test/fileutils/test_fileutils.rb: ditto. * wince/*: removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince/sys/types.h')
-rw-r--r--wince/sys/types.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/wince/sys/types.h b/wince/sys/types.h
deleted file mode 100644
index 541d5e8361..0000000000
--- a/wince/sys/types.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#ifndef SYS_TYPES_H
-#define SYS_TYPES_H 1
-
-#define BIG_ENDIAN 1234
-#define LITTLE_ENDIAN 4321
-
-#ifdef MIPS
-#define BYTE_ORDER LITTLE_ENDIAN
-#endif
-
-//#if UNDER_CE > 201
-// typedef unsigned long time_t;
-// #define _TIME_T_DEFINED_
-//#endif
-typedef unsigned long dev_t;
-typedef unsigned long ino_t;
-#ifndef _MODE_T_DEFINED_
- typedef unsigned long mode_t;
- #define _MODE_T_DEFINED_
-#endif
-
-typedef long clock_t;
-
-#ifndef _PTRDIFF_T_DEFINED
-typedef long ptrdiff_t;
-#define _PTRDIFF_T_DEFINED
-#endif
-
-typedef long off_t;
-
-//typedef unsigned char u_char;
-//typedef unsigned short u_short;
-
-#ifndef _CADDR_T_DEFINED_
-typedef unsigned char * caddr_t;
-#define _CADDR_T_DEFINED_
-#endif
-
-#ifndef _SIZE_T_DEFINED_
-typedef unsigned int size_t;
-#define _SIZE_T_DEFINED_
-#endif
-
-//typedef unsigned char u_int8_t;
-
-//typedef short int16_t;
-//typedef unsigned short u_int16_t;
-
-//typedef int int32_t;
-//typedef unsigned int u_int32_t;
-
-//typedef unsigned long u_long;
-//typedef unsigned int u_int;
-
-//#ifndef _TIME_T_DEFINED_
-//typedef unsigned long time_t;
-//#define _TIME_T_DEFINED_
-//#endif
-
-#endif