
6 Apr
2005
6 Apr
'05
11:57 a.m.
So the __noreturn__ command used by GNU's /usr/include/assert.h couldn't be used?
/* This prints an "Assertion failed" message and aborts. */ extern void __assert_fail (__const char *__assertion, __const char *__file, unsigned int __line, __const char *__function) __THROW __attribute__ ((__noreturn__));
Wouldn't that have to be applied to your function signature, rather than the assertion? John.