Move the basic OpenBIOS configuration header files from include/openbios to include/.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@695 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Mark Cave-Ayland
2010-03-14 17:19:58 +00:00
committed by Mark Cave-Ayland
parent 02896c11fd
commit 1dbe55b8e4
177 changed files with 181 additions and 181 deletions

View File

@@ -60,7 +60,7 @@ typedef unsigned int time_t;
#endif /* BOOTSTRAP */
#include "openbios/sysinclude.h"
#include "sysinclude.h"
#ifndef MIN
#define MIN(x,y) (((x) < (y)) ? (x) : (y))

View File

@@ -11,7 +11,7 @@
#ifndef OPENBIOS_DRIVERS_H
#define OPENBIOS_DRIVERS_H
#include "openbios/config.h"
#include "config.h"
#ifdef CONFIG_DRIVER_PCI
/* drivers/pci.c */

View File

@@ -17,7 +17,7 @@
#ifndef _H_STRING
#define _H_STRING
#include "openbios/config.h"
#include "config.h"
#define bzero(s,n) memset( s, 0, n )
#define atol(nptr) strtol(nptr, NULL, 10 )

View File

@@ -18,7 +18,7 @@
#define _H_VSPRINTF
#include <stdarg.h>
#include "openbios/config.h"
#include "config.h"
extern int vsprintf(char *buf, const char *fmt, va_list args );
extern int sprintf(char * buf, const char *fmt, ...);