aboutsummaryrefslogtreecommitdiff
path: root/compiler.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-13 19:01:49 -0800
commit43aeadaab8c29351e506c03829c3dc74a9f6b86a (patch)
treeaa8ec115dee11f7a8adcd9f9e1a649bb5e985fb3 /compiler.c
parent3443d817150e641221749bf129cc6716e6baaf32 (diff)
Replaced _exit()s with exits()
Diffstat (limited to 'compiler.c')
-rw-r--r--compiler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler.c b/compiler.c
index 882acdb..f36a7a4 100644
--- a/compiler.c
+++ b/compiler.c
@@ -10,7 +10,7 @@
#include "compiler.h"
#include "utils.h"
-#define file_err(f, ...) do { fprint_line(stderr, f, __VA_ARGS__); _exit(1); } while(0)
+#define file_err(f, ...) do { fprint_line(stderr, f, __VA_ARGS__); exit(1); } while(0)
__attribute__((nonnull))
static vm_op_t *expand_chain(file_t *f, vm_op_t *first);