From 0fa3504a77233403cb78ac1fd16a0af93b938c36 Mon Sep 17 00:00:00 2001 From: Azim Khan Date: Fri, 22 Jun 2018 11:34:33 +0100 Subject: [PATCH] Add missing MSVC typedefs --- tests/suites/helpers.function | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/suites/helpers.function b/tests/suites/helpers.function index c772af9a5..7f5a6f29a 100644 --- a/tests/suites/helpers.function +++ b/tests/suites/helpers.function @@ -25,6 +25,8 @@ #ifdef _MSC_VER #include +typedef UINT8 uint8_t; +typedef INT32 int32_t; typedef UINT32 uint32_t; #define strncasecmp _strnicmp #define strcasecmp _stricmp