What C preprocessor conditional should I use for OS X specific code? I need to include a specific library if I am compiling for OS X or a different header if I am compiling for
old style raw:
#ifdef WIN32 // windows. #elif __APPLE__ // osx and ios. #endif