aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/types.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-22 11:19:40 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-22 11:19:40 +0000
commitc6c6a0890d23024c78426352d3da55aec2e472d5 (patch)
treeb172491e9ebaa98a8eef9887ce29bfe7c4f4703c /extras/mini-os/include/types.h
parent956eabb460f52d24bd983731cdef07a3cf0bdc82 (diff)
downloadxen-c6c6a0890d23024c78426352d3da55aec2e472d5.tar.gz
xen-c6c6a0890d23024c78426352d3da55aec2e472d5.tar.bz2
xen-c6c6a0890d23024c78426352d3da55aec2e472d5.zip
minios: Fix x86_32 compilation
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/include/types.h')
-rw-r--r--extras/mini-os/include/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/include/types.h b/extras/mini-os/include/types.h
index 8767643b0d..a53db24a93 100644
--- a/extras/mini-os/include/types.h
+++ b/extras/mini-os/include/types.h
@@ -19,6 +19,7 @@
#ifndef _TYPES_H_
#define _TYPES_H_
+#include <stddef.h>
typedef signed char s8;
typedef unsigned char u8;
@@ -78,5 +79,4 @@ typedef s64 int64_t;
#define UINT_MAX (~0U)
typedef long ssize_t;
-typedef unsigned long size_t;
#endif /* _TYPES_H_ */