diff --git a/miniz_common.h b/miniz_common.h index 88bbf16..05cafae 100644 --- a/miniz_common.h +++ b/miniz_common.h @@ -8,10 +8,10 @@ /* ------------------- Types and macros */ typedef unsigned char mz_uint8; -typedef signed short mz_int16; -typedef unsigned short mz_uint16; -typedef unsigned int mz_uint32; -typedef unsigned int mz_uint; +typedef int16_t mz_int16; +typedef uint16_t mz_uint16; +typedef uint32_t mz_uint32; +typedef uint32_t mz_uint; typedef int64_t mz_int64; typedef uint64_t mz_uint64; typedef int mz_bool;