From 43aeadaab8c29351e506c03829c3dc74a9f6b86a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 13 Jan 2021 19:01:49 -0800 Subject: Replaced _exit()s with exits() --- vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 9e35334..68c793a 100644 --- a/vm.c +++ b/vm.c @@ -481,7 +481,7 @@ static match_t *_match(def_t *defs, file_t *f, const char *str, vm_op_t *op, uns } default: { fprintf(stderr, "Unknown opcode: %d", op->type); - _exit(1); + exit(1); return NULL; } } -- cgit v1.2.3