Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef OS_CPP
- #define OS_CPP
-
- #if OS_WINDOWS
- #include "os_win32.cpp"
- #elif OS_LINUX
- #include "os_linux.cpp"
- #else
- #error Development environment not supported.
- #endif
-
- #endif
|