mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Fix clang errors about undefined llong etc.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@750 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -23,25 +23,25 @@
|
||||
|
||||
#define PROGRAM_NAME "OpenBIOS"
|
||||
|
||||
typedef unsigned long ulong;
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned char uchar;
|
||||
|
||||
typedef unsigned long long ullong;
|
||||
typedef long long llong;
|
||||
|
||||
#ifndef BOOTSTRAP
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL ((void*)0)
|
||||
#endif
|
||||
|
||||
typedef unsigned long ulong;
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned char uchar;
|
||||
|
||||
typedef unsigned int size_t;
|
||||
typedef unsigned int usize_t;
|
||||
typedef signed int ssize_t;
|
||||
typedef signed int off_t;
|
||||
|
||||
typedef unsigned long long ullong;
|
||||
typedef long long llong;
|
||||
|
||||
typedef unsigned int time_t;
|
||||
|
||||
#define UINT_MAX ((uint)-1)
|
||||
|
||||
Reference in New Issue
Block a user