add redundant includes for stdint.h and stddef.h when compiling with stdlib - necessary for IDE error-checking

This commit is contained in:
mykola2312 2022-05-17 02:47:11 +03:00
parent fdae28a2d8
commit 261322aaba

View file

@ -133,6 +133,9 @@ typedef void* cu_ptr;
# define ZERO 0
typedef uword size_t;
typedef iword ssize_t;
#else
# include <stdint.h>
# include <stddef.h>
#endif
#endif