blob: ca250bdd604dcc84ccffbe25bd3ee22cada6cbe1 [file] [log] [blame]
#include<stdio.h>
int main() {
#ifdef NDEBUG
printf("Non-debug\n");
#else
printf("Debug\n");
#endif
return 0;
}