cpp-cheat/c/ndebug.c
2015-06-07 11:17:09 +02:00

17 lines
239 B
C

/*
# NDEBUG
If defined *before assert.h* is included, asserts do nothing.
Commonly defined form the command line.
*/
#define NDEBUG
#include <assert.h>
#include <stdlib.h>
int main() {
assert(0);
return EXIT_SUCCESS;
}