13 lines
172 B
C
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
|