Skip to content

Commit 1971d7d

Browse files
author
Noam Preil
committed
plan9: use _Exit
1 parent 0d7afc9 commit 1971d7d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/core/os.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,11 +282,7 @@ JANET_CORE_FN(os_exit,
282282
}
283283
janet_deinit();
284284
if (argc >= 2 && janet_truthy(argv[1])) {
285-
#ifdef JANET_PLAN9
286-
exit(status);
287-
#else
288285
_Exit(status);
289-
#endif
290286
} else {
291287
exit(status);
292288
}

0 commit comments

Comments
 (0)