Skip to content

Instantly share code, notes, and snippets.

@jonm
Created October 4, 2015 15:09
Show Gist options
  • Save jonm/022000118c7fea119206 to your computer and use it in GitHub Desktop.
Save jonm/022000118c7fea119206 to your computer and use it in GitHub Desktop.
simple program to test compiler support for `#ifdef 0`
#include <stdio.h>
int main(void) {
#ifdef 0
/* xyzzy */
#endif
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment