mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-11 19:29:42 +00:00
1 line
211 B
Plaintext
1 line
211 B
Plaintext
|
/* Conformance Test 21.1.0.2: Verification of assert, ndebug macros */
#include <assert.h>
#define NDEBUG 1
main ()
{
int i = 7;
assert (i == 7);
printf ("Passed Conformance Test 21.1.0.2\n");
}
|