Re-use types from stdint.h

This commit is contained in:
Martin Raiber 2024-08-05 10:45:42 +02:00
parent bf7a1f0a5a
commit 8e8e609e02

View File

@ -8,10 +8,10 @@
/* ------------------- Types and macros */ /* ------------------- Types and macros */
typedef unsigned char mz_uint8; typedef unsigned char mz_uint8;
typedef signed short mz_int16; typedef int16_t mz_int16;
typedef unsigned short mz_uint16; typedef uint16_t mz_uint16;
typedef unsigned int mz_uint32; typedef uint32_t mz_uint32;
typedef unsigned int mz_uint; typedef uint32_t mz_uint;
typedef int64_t mz_int64; typedef int64_t mz_int64;
typedef uint64_t mz_uint64; typedef uint64_t mz_uint64;
typedef int mz_bool; typedef int mz_bool;