--- Gnu-Mach/kern/assert.h 2020/09/02 04:42:41 1.1.1.2 +++ Gnu-Mach/kern/assert.h 2020/09/02 04:45:11 1.1.1.3 @@ -31,12 +31,12 @@ #include -#ifdef DEBUG +#ifndef NDEBUG #define MACH_ASSERT 1 #endif #if MACH_ASSERT -extern void Assert(char *exp, char *filename, int line); +extern void Assert(char *exp, char *filename, int line) __attribute__ ((noreturn)); #define assert(ex) \ MACRO_BEGIN \