Skip to content

Instantly share code, notes, and snippets.

@dereckson
Created September 17, 2021 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dereckson/67c3de57cfe6f082c706c0e0340ecbbe to your computer and use it in GitHub Desktop.
Save dereckson/67c3de57cfe6f082c706c0e0340ecbbe to your computer and use it in GitHub Desktop.
__STDC_IEC_559__ detection
int main(void) {
#if defined (__STDC_IEC_559__)
return 0;
#else
return 1;
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment