Adilol

Adil's Macro

Nov 2nd, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. /*
  2. Adil's macro to determine OS
  3. <c> Adil Hafeez
  4. http://jokercode.net/code/cpp_dump/
  5. */
  6. #include <math.h>
  7. #if defined(_WIN32) || defined(WIN32) || defined(_CYGWIN_) || defined(_MINGW_) || defined (_BORLANDC_)
  8. #include <iostream>
  9. #define IS_WIN
  10. #else
  11. #include <stdio.h>
  12. #endif
  13.  
Advertisement
Add Comment
Please, Sign In to add comment