migration

This commit is contained in:
Daniel Ledda
2025-11-09 04:18:08 +01:00
parent 768424e199
commit 52f9a2fe33
8 changed files with 121 additions and 130 deletions

12
os.c Normal file
View File

@@ -0,0 +1,12 @@
#ifndef OS_C
#define OS_C
#if OS_WINDOWS
#include "os_win32.c"
#elif OS_LINUX
#include "os_linux.c"
#else
#error Development environment not supported.
#endif
#endif