Skip to content

Instantly share code, notes, and snippets.

@shelling
Created May 19, 2013 17:39
Show Gist options
  • Select an option

  • Save shelling/5608373 to your computer and use it in GitHub Desktop.

Select an option

Save shelling/5608373 to your computer and use it in GitHub Desktop.
#if defined(__APPLE__) && defined(__MACH__)
#define OS "Mac OS X"
#endif
#if defined(__unix__)
#if defined(__linux__)
#define OS "Linux"
#else
#define OS "UNIX";
#endif
#endif
#if defined(__hpux)
#define OS "HP UX";
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment