From 8e8e609e025d7e78174986c2c8875c7857ab5e71 Mon Sep 17 00:00:00 2001 From: Martin Raiber Date: Mon, 5 Aug 2024 10:45:42 +0200 Subject: [PATCH] Re-use types from stdint.h --- miniz_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;