aboutsummaryrefslogtreecommitdiff
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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/x86/include/stddef.h b/src/arch/x86/include/stddef.h
index a6c3fc6e15..fc89de54de 100644
--- a/src/arch/x86/include/stddef.h
+++ b/src/arch/x86/include/stddef.h
@@ -15,4 +15,10 @@ typedef unsigned int wint_t;
#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 */