Guest User

Untitled

a guest
Jul 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #if (
  2. defined(_WIN32) || defined(__WIN32__) || defined(_Windows) ||
  3. defined(_WIN64) || defined(__WIN64__) ||
  4. defined(__CYGWIN__) || defined(__MINGW32__) || defined(__MINGW64__))
  5.  
  6. # define OS_WIN 1
  7. #endif
  8.  
  9. #include "libbuild.h"
  10.  
  11. #if defined(OS_WIN)
  12.  
  13. static int aaa(int i) { return (i + 1); }
  14.  
  15. #else
  16.  
  17. static long aaa(long i) { return (i + 1); }
  18.  
  19. #endif
Add Comment
Please, Sign In to add comment