diff options
| author | bellard <bellard> | 2005-04-17 13:15:05 +0000 |
|---|---|---|
| committer | bellard <bellard> | 2005-04-17 13:15:05 +0000 |
| commit | 484ee920c1cc0b60ad25becd489e590f6d6d852a (patch) | |
| tree | b5169b8588a56efca3804303b48c35f629d7bb30 | |
| parent | debf0234cced1e9cf011e0062534a876f5d04b66 (diff) | |
| download | tinycc-484ee920c1cc0b60ad25becd489e590f6d6d852a.tar.gz tinycc-484ee920c1cc0b60ad25becd489e590f6d6d852a.tar.bz2 | |
do not assume signed char (grischka)
| -rw-r--r-- | elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ #else #ifndef __int8_t_defined #define __int8_t_defined -typedef char int8_t; +typedef signed char int8_t; typedef short int int16_t; typedef int int32_t; typedef long long int int64_t; |
