1
0
Fork 0
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:
Dave Chapman 2005-11-12 15:02:59 +00:00
parent f6da6d85b6
commit 782d335dd4

View file

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