XEEN: create_xeen: Implement varargs prints for error

This commit is contained in:
Jonathan Phénix 2020-12-25 11:12:40 -05:00 committed by Paul Gilbert
parent 315ee1a530
commit 9b74410993

View File

@ -42,7 +42,14 @@
#define VERSION_NUMBER 4
void NORETURN_PRE error(const char *s, ...) {
fprintf(stderr, "%s\n", s);
va_list ap;
va_start(ap, s);
vfprintf(stderr, s, ap);
va_end(ap);
fputc('\n', stderr);
exit(1);
}