aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/vsprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/vsprintf.c')
-rw-r--r--src/core/vsprintf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/vsprintf.c b/src/core/vsprintf.c
index b22ae3104..414b4509a 100644
--- a/src/core/vsprintf.c
+++ b/src/core/vsprintf.c
@@ -1,5 +1,8 @@
-#include "etherboot.h"
#include <stdarg.h>
+#include "if_ether.h" /* for ETH_ALEN */
+#include "limits.h" /* for CHAR_BIT */
+#include "console.h"
+#include "vsprintf.h"
#define LONG_SHIFT ((int)((sizeof(unsigned long)*CHAR_BIT) - 4))
#define INT_SHIFT ((int)((sizeof(unsigned int)*CHAR_BIT) - 4))