diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-09 14:07:14 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-05-09 14:48:21 +0200 |
commit | 525a88d87930d01d4301e2723dda3dca208cd3d4 (patch) | |
tree | 0b68313ac6897b24c26c0e7cfab910f6a841c242 /sysdep/config.h | |
parent | 95639d957758cba04aeec7ef319c2de2a5ff52da (diff) | |
parent | 5d6dc93043a0bc77b1e0a71ea8dfe15325024b45 (diff) |
Merge branch 'master' into int-new
Diffstat (limited to 'sysdep/config.h')
-rw-r--r-- | sysdep/config.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sysdep/config.h b/sysdep/config.h index 2ec31500..d740ff06 100644 --- a/sysdep/config.h +++ b/sysdep/config.h @@ -24,16 +24,17 @@ #include "sysdep/paths.h" /* Types */ -typedef signed INTEGER_8 s8; -typedef unsigned INTEGER_8 u8; -typedef INTEGER_16 s16; -typedef unsigned INTEGER_16 u16; -typedef INTEGER_32 s32; -typedef unsigned INTEGER_32 u32; -typedef INTEGER_64 s64; -typedef unsigned INTEGER_64 u64; -typedef u8 byte; -typedef u16 word; +#include <stdint.h> +typedef int8_t s8; +typedef uint8_t u8; +typedef int16_t s16; +typedef uint16_t u16; +typedef int32_t s32; +typedef uint32_t u32; +typedef int64_t s64; +typedef uint64_t u64; +typedef uint8_t byte; +typedef uint16_t word; typedef unsigned int uint; #endif |