From cf562b26b05a446da45b8f1ea2c5fe3463f1039b Mon Sep 17 00:00:00 2001 From: Rodolfo Barcelli Jo Date: Thu, 22 Jan 2026 10:50:33 +0800 Subject: [PATCH] Update: Change includes to point to the right place --- test/main.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test/main.c b/test/main.c index 5aee508..ad24195 100644 --- a/test/main.c +++ b/test/main.c @@ -1,12 +1,12 @@ #include -#include #include +#include #define BECS_MAX_ENTITIES 100 #define BECS_MAX_COMPONENTS 2 #define BECS_IMPLEMENTATION -#include "../becs3.h" +#include "../becs.h" typedef struct compA { uint32_t thing; @@ -29,7 +29,13 @@ int main(void) { size_t MinMemorySize = BECS_GetMinMemoryArenaSize(componentSizes, 2); - printf("%lu\n", MinMemorySize); +#ifdef _WIN32 + printf("%llu\n", MinMemorySize); +#endif + +#ifdef UNIX + printf("%lu\n", MinMemorySize); +#endif void *memory= malloc(MinMemorySize); BECS_ECS ecs = BECS_InitECS(memory, MinMemorySize);