rgbasm: Fix declaration of fatalerror()

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2018-04-03 20:21:00 +01:00
parent 4f126b37d0
commit ef87dd5a6e

View File

@@ -24,6 +24,7 @@
#include "extern/err.h"
#include "helpers.h"
#include "version.h"
extern int yyparse(void);
@@ -254,7 +255,7 @@ void yyerror(const char *fmt, ...)
va_end(args);
}
void fatalerror(const char *fmt, ...)
noreturn_ void fatalerror(const char *fmt, ...)
{
va_list args;