core.h: add a few include files needed pretty much everywhere
authorH. Peter Anvin <hpa@linux.intel.com>
Sat, 28 May 2011 00:44:48 +0000 (17:44 -0700)
committerH. Peter Anvin <hpa@linux.intel.com>
Sat, 28 May 2011 00:44:48 +0000 (17:44 -0700)
Some include files we might as well centralize...

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
core/include/core.h

index 6e6f7fb..ed8e51a 100644 (file)
@@ -2,7 +2,14 @@
 #define CORE_H
 
 #include <klibc/compiler.h>
+#include <stddef.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <inttypes.h>
+#include <stdio.h>
+#include <dprintf.h>
 #include <com32.h>
+#include <errno.h>
 #include <syslinux/pmapi.h>
 
 extern char core_xfer_buf[65536];