On 02/19/2013 04:25 PM, Paul Eggert wrote:
_Noreturn is typically put before the return type, e.g.,:static _Noreturn void randread_error (void const *); rather than putting the _Noreturn after the 'void', or after the ')'. C11 does not allow putting _Noreturn after the ')', if I'm reading the spec correctly.
Oops, right. I might defer the _Noreturn change so, to one that depends on stdnoreturn and then does: #include <stdnoreturn.h> ... noreturn ... cheers, Pádraig.
