summaryrefslogtreecommitdiff
path: root/os.c
blob: 17897d642bc8be56df01e0ee10b5b65c37e3c90d (plain)
1
2
3
4
5
6
7
#if _WIN32
#include "os-win.c"
#elif __unix__
#include "os-posix.c"
#else
#error "Unrecognized operating system"
#endif