libliftoff/test/check_ndebug.c
Simon Ser 32683879e7 Add newline after function return type
Aligns our style with Linux' and Weston's.
2021-08-13 22:02:33 +02:00

12 lines
165 B
C

#include <stdio.h>
int
main(int argc, char *argv[])
{
#ifdef NDEBUG
fprintf(stderr, "NDEBUG is defined, cannot run tests\n");
return 1;
#else
return 0;
#endif
}