mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
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:
committed by
Mark Cave-Ayland
parent
02896c11fd
commit
1dbe55b8e4
@@ -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))
|
||||
@@ -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 */
|
||||
|
||||
@@ -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 )
|
||||
|
||||
@@ -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, ...);
|
||||
|
||||
Reference in New Issue
Block a user