mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-14 17:19:59 +00:00
17 lines
239 B
C
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;
|
|
}
|