From 5920354ee9132b87cea62fed2d02fde789c1f8b8 Mon Sep 17 00:00:00 2001 From: ostanton Date: Sat, 5 Apr 2025 19:45:55 +0100 Subject: Include guards for MSVC to stop whining --- src/types.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/types.c') diff --git a/src/types.c b/src/types.c index cbd9315..fd8f9ee 100644 --- a/src/types.c +++ b/src/types.c @@ -1,3 +1,6 @@ +#ifndef INCLUDE_TYPES_C +#define INCLUDE_TYPES_C + #include "all.c" #define MEM_SIZE (1<<24) @@ -106,3 +109,5 @@ static void *alloc(Arena *a, ptrdiff_t count, ptrdiff_t size, ptrdiff_t align) { return r; } + +#endif // INCLUDE_TYPES_C -- cgit v1.2.3