summaryrefslogtreecommitdiffstats
path: root/test cases/unit/28 ndebug if-release/main.c
blob: 70b3d044aa31361004d281f25e61640b5c17f69d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>

int main(void) {
#ifdef NDEBUG
    printf("NDEBUG=1\n");
#else
    printf("NDEBUG=0\n");
#endif
    return 0;
}