blob: d647d719fe7ab51ca1020a5ee319604bd07f06bf [file] [log] [blame]
int main() {
#ifdef NDEBUG
// NDEBUG is defined
return 0;
#else
// NDEBUG is not defined
return 1;
#endif
}