Author: blueswirl Date: Sun Apr 25 14:53:32 2010 New Revision: 750 URL: http://tracker.coreboot.org/trac/openbios/changeset/750
Log: Fix clang errors about undefined llong etc.
Signed-off-by: Blue Swirl blauwirbel@gmail.com
Modified: trunk/openbios-devel/include/config.h
Modified: trunk/openbios-devel/include/config.h ============================================================================== --- trunk/openbios-devel/include/config.h Fri Apr 16 12:20:06 2010 (r749) +++ trunk/openbios-devel/include/config.h Sun Apr 25 14:53:32 2010 (r750) @@ -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)