X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fco65%2Ferror.h;h=48ba30caf30e97a92285fee3a5c739aff15b2ae4;hb=7c5a400e01d78f9e183f09f8c6c3bf261e65e10a;hp=9eab1e7babb6ee58294183cfdb20044c7a3a7871;hpb=bbb70a2d474ade97e81374cf9efe2db9cb43ce32;p=cc65 diff --git a/src/co65/error.h b/src/co65/error.h index 9eab1e7ba..48ba30caf 100644 --- a/src/co65/error.h +++ b/src/co65/error.h @@ -52,10 +52,10 @@ void Warning (const char* Format, ...) attribute((format(printf,1,2))); /* Print a warning message */ -void Error (const char* Format, ...) attribute((format(printf,1,2))); +void Error (const char* Format, ...) attribute((noreturn, format(printf,1,2))); /* Print an error message and die */ -void Internal (const char* Format, ...) attribute((format(printf,1,2))); +void Internal (const char* Format, ...) attribute((noreturn, format(printf,1,2))); /* Print an internal error message and die */