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:
Blue Swirl
2010-04-25 12:53:32 +00:00
parent 454b8225dc
commit 747b59656b

View File

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