blob: 70b3d044aa31361004d281f25e61640b5c17f69d [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
int main(void) {
#ifdef NDEBUG
printf("NDEBUG=1\n");
#else
printf("NDEBUG=0\n");
#endif
return 0;
}