Guest User

Untitled

a guest
Jul 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int main(void)
  6. {
  7. #ifdef __linux__
  8. printf("__linux__\n");
  9. #endif
  10. #ifdef __LINUX__
  11. printf("__LINUX__\n");
  12. #endif
  13. return EXIT_SUCCESS;
  14. }
Add Comment
Please, Sign In to add comment