ref: dafc7b4128023928611008473fd07e0ab7a0bbd8
dir: /tests/libc/execute/0003-assert.c/
#include <assert.h> #include <stdio.h> int main() { int i; char c; printf("First assert\n"); assert(sizeof(i) >= sizeof(c)); #define NDEBUG #include <assert.h> printf("Second assert, that must fail\n"); assert(sizeof(i) < sizeof(c)); return 0; }