aboutsummaryrefslogtreecommitdiffstats
path: root/mini-os/h/types.h
diff options
context:
space:
mode:
authorrneugeba@wyvis.research <rneugeba@wyvis.research>2003-10-06 11:26:01 +0000
committerrneugeba@wyvis.research <rneugeba@wyvis.research>2003-10-06 11:26:01 +0000
commitf2c4c1d4e811964ff9fc87101f0804cf10f9789e (patch)
tree09a4ea50df6f7813a76d3e9f97b374b47f1ee64b /mini-os/h/types.h
parent922fddb0355189b9e0b4a85bca04d03569b7ad56 (diff)
downloadxen-f2c4c1d4e811964ff9fc87101f0804cf10f9789e.tar.gz
xen-f2c4c1d4e811964ff9fc87101f0804cf10f9789e.tar.bz2
xen-f2c4c1d4e811964ff9fc87101f0804cf10f9789e.zip
bitkeeper revision 1.478.1.1 (3f815149k7sE-z_IK6MG5eHi34m-Qg)
Minimal guest OS (based on some old code from Keir)
Diffstat (limited to 'mini-os/h/types.h')
-rw-r--r--mini-os/h/types.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/mini-os/h/types.h b/mini-os/h/types.h
new file mode 100644
index 0000000000..4f87a74e99
--- /dev/null
+++ b/mini-os/h/types.h
@@ -0,0 +1,41 @@
+/* -*- Mode:C; c-basic-offset:4; tab-width:4 -*-
+ ****************************************************************************
+ * (C) 2003 - Rolf Neugebauer - Intel Research Cambridge
+ ****************************************************************************
+ *
+ * File: types.h
+ * Author: Rolf Neugebauer (neugebar@dcs.gla.ac.uk)
+ * Changes:
+ *
+ * Date: May 2003
+ *
+ * Environment: Xeno Minimal OS
+ * Description: a random collection of type definitions
+ *
+ ****************************************************************************
+ * $Id: h-insert.h,v 1.4 2002/11/08 16:03:55 rn Exp $
+ ****************************************************************************
+ */
+
+#ifndef _TYPES_H_
+#define _TYPES_H_
+
+typedef signed char s8;
+typedef unsigned char u8;
+typedef signed short s16;
+typedef unsigned short u16;
+typedef signed int s32;
+typedef unsigned int u32;
+typedef signed long long s64;
+typedef unsigned long long u64;
+
+typedef unsigned int size_t;
+
+/* FreeBSD compat types */
+typedef unsigned char u_char;
+typedef unsigned int u_int;
+typedef unsigned long u_long;
+typedef long long quad_t;
+typedef unsigned long long u_quad_t;
+typedef unsigned int uintptr_t;
+#endif /* _TYPES_H_ */