trivial: explicitly make signed types signed as ommiting the "signed" keyword might not do what we want.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@465 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-08-10 13:48:59 +00:00
parent 7467eba22a
commit bb4744c740

View file

@ -74,15 +74,15 @@ typedef unsigned int u32;
typedef unsigned long long u64;
#endif
typedef char s8;
typedef short s16;
typedef int s32;
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
#ifdef __HAS_LONG_LONG__
typedef long long s64;
typedef signed long long s64;
#endif
typedef unsigned int uint;
typedef int sint;
typedef unsigned int uint;
typedef signed int sint;
typedef u16 X86EMU_pioAddr;