From c7e72221409b3df0c3f8473bbf5ecd8f08d3757f Mon Sep 17 00:00:00 2001 From: Paul Hollinsky Date: Thu, 5 Aug 2021 15:07:02 -0700 Subject: [PATCH] Legacy: Ensure stddef.h is present for size_t Many compilers won't need this, but better to have it so it's correct. --- include/icsneo/icsneolegacy.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/icsneo/icsneolegacy.h b/include/icsneo/icsneolegacy.h index 3988382..e71173d 100644 --- a/include/icsneo/icsneolegacy.h +++ b/include/icsneo/icsneolegacy.h @@ -5,6 +5,7 @@ #include "icsneo/platform/tchar.h" #include +#include typedef uint8_t byte; // Typedef helper for the following include #include "icsneo/icsnVC40.h" // Definitions for structs @@ -166,4 +167,4 @@ extern int LegacyDLLExport icsneoDisableBitSmash(void* hObject, unsigned int res } // extern "C" #endif -#endif \ No newline at end of file +#endif