I\'d like to have both the includes for OS X as well as linux in my opengl program (C++) how can I set my program to use one if the other is not available? Here\'s what i\'m cur
#ifdef __APPLE__ #include //OS x libs #include #include #else #include #endif