From 4e5da084f2fb8de89a6f383e8e7dd0d98c14a523 Mon Sep 17 00:00:00 2001 From: jsteube Date: Mon, 25 Mar 2019 12:35:40 +0100 Subject: [PATCH] Testfix for osx --- include/emu_general.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/emu_general.h b/include/emu_general.h index feb1ab15d..a94d7aff7 100644 --- a/include/emu_general.h +++ b/include/emu_general.h @@ -24,10 +24,10 @@ typedef uint16_t ushort; typedef uint32_t uint; typedef uint64_t ulong; -typedef uchar u8; -typedef ushort u16; -typedef uint u32; -typedef ulong u64; +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; // there's no such thing in plain C, therefore all vector operation cannot work in this emu // which is why VECT_SIZE is set to 1