mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
7467eba22a
commit
bb4744c740
1 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue