Files
djstdlib/os.c
Daniel Ledda 52f9a2fe33 migration
2025-11-09 04:18:08 +01:00

13 lines
172 B
C

#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