From 261322aaba0fdaa0a17efa442e02869f68ab0cc5 Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Tue, 17 May 2022 02:47:11 +0300 Subject: [PATCH] add redundant includes for stdint.h and stddef.h when compiling with stdlib - necessary for IDE error-checking --- cutypes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cutypes.h b/cutypes.h index 0be0431..e3754d5 100644 --- a/cutypes.h +++ b/cutypes.h @@ -133,6 +133,9 @@ typedef void* cu_ptr; # define ZERO 0 typedef uword size_t; typedef iword ssize_t; +#else +# include +# include #endif #endif \ No newline at end of file