Created
September 17, 2021 15:50
-
-
Save dereckson/67c3de57cfe6f082c706c0e0340ecbbe to your computer and use it in GitHub Desktop.
__STDC_IEC_559__ detection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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