smeargle-gd/src/util.h

8 lines
146 B
C
Raw Normal View History

2023-11-27 21:38:00 +00:00
#include <stdio.h>
static void error(const char *msg, const char *msg1) {
fprintf(stderr, "Error: %s%s\n", msg, msg1 ? msg1 : "");
exit(1);
}