mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-17 15:44:18 +08:00
do not assume signed char (grischka)
This commit is contained in:
parent
debf0234cc
commit
484ee920c1
2
elf.h
2
elf.h
@ -26,7 +26,7 @@
|
|||||||
#else
|
#else
|
||||||
#ifndef __int8_t_defined
|
#ifndef __int8_t_defined
|
||||||
#define __int8_t_defined
|
#define __int8_t_defined
|
||||||
typedef char int8_t;
|
typedef signed char int8_t;
|
||||||
typedef short int int16_t;
|
typedef short int int16_t;
|
||||||
typedef int int32_t;
|
typedef int int32_t;
|
||||||
typedef long long int int64_t;
|
typedef long long int int64_t;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user