summaryrefslogtreecommitdiff
path: root/include/nonunix/linux/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/nonunix/linux/types.h')
-rw-r--r--include/nonunix/linux/types.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/nonunix/linux/types.h b/include/nonunix/linux/types.h
new file mode 100644
index 00000000..8e5bc90a
--- /dev/null
+++ b/include/nonunix/linux/types.h
@@ -0,0 +1,28 @@
+#ifndef _LINUX_TYPES_H
+#define _LINUX_TYPES_H
+
+#ifndef _MSC_VER
+#error _MSC_VER not defined
+#endif
+
+
+typedef unsigned __int8 __u8;
+typedef signed __int8 __s8;
+
+typedef signed __int64 __s64;
+typedef unsigned __int64 __u64;
+
+typedef signed __int16 __s16;
+typedef unsigned __int16 __u16;
+
+typedef signed __int32 __s32;
+typedef unsigned __int32 __u32;
+
+typedef signed __int64 __s64;
+typedef unsigned __int64 __u64;
+
+
+typedef __u32 ino_t;
+
+
+#endif /* LINUX_TYPES_H */