forked from len0rd/rockbox
Explicitly make int8_t a "signed char" for better portability. e.g. "char" is by default unsigned for ARM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7822 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f6da6d85b6
commit
782d335dd4
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
#ifndef __INTTYPES_H__
|
||||
#define __INTTYPES_H__
|
||||
|
||||
#define int8_t char
|
||||
#define int8_t signed char
|
||||
#define int16_t short
|
||||
#define int32_t long
|
||||
#define int64_t long long
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue