summaryrefslogtreecommitdiff
path: root/src/arch/x86/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/include/stddef.h')
-rw-r--r--src/arch/x86/include/stddef.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/arch/x86/include/stddef.h b/src/arch/x86/include/stddef.h
deleted file mode 100644
index fc89de54de..0000000000
--- a/src/arch/x86/include/stddef.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef I386_STDDEF_H
-#define I386_STDDEF_H
-
-typedef long ptrdiff_t;
-#ifndef __SIZE_TYPE__
-#define __SIZE_TYPE__ unsigned long
-#endif
-typedef __SIZE_TYPE__ size_t;
-typedef long ssize_t;
-
-typedef int wchar_t;
-typedef unsigned int wint_t;
-
-#define NULL ((void *)0)
-
-#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
-
-#ifdef __PRE_RAM__
-#define ROMSTAGE_CONST const
-#else
-#define ROMSTAGE_CONST
-#endif
-
-#endif /* I386_STDDEF_H */