Gave vsprintf.c its own header file, and made console.h include it.

This commit is contained in:
Michael Brown
2005-04-17 10:44:26 +00:00
parent 063140864e
commit 664ffea697
3 changed files with 19 additions and 1 deletions

View File

@@ -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))