Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Adil's macro to determine OS
- <c> Adil Hafeez
- http://jokercode.net/code/cpp_dump/
- */
- #include <math.h>
- #if defined(_WIN32) || defined(WIN32) || defined(_CYGWIN_) || defined(_MINGW_) || defined (_BORLANDC_)
- #include <iostream>
- #define IS_WIN
- #else
- #include <stdio.h>
- #endif
Advertisement
Add Comment
Please, Sign In to add comment