change types to match stdint

have printf test print the sizes of these.
This commit is contained in:
Mariano Alvira 2010-03-17 17:27:21 -04:00
parent ef0a049035
commit 7272f9aec3
2 changed files with 20 additions and 5 deletions

View file

@ -5,9 +5,9 @@ typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed long int32_t;
typedef unsigned long uint32_t;
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
typedef signed long long int int64_t;
typedef unsigned long long int uint64_t;
#endif