Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

13 строки
181 B

  1. #ifndef OS_CPP
  2. #define OS_CPP
  3. #if OS_WINDOWS
  4. #include "os_win32.cpp"
  5. #elif OS_LINUX
  6. #include "os_linux.cpp"
  7. #else
  8. #error Development environment not supported.
  9. #endif
  10. #endif