From e8c845e78bb5c1a87726ff971eef4a2f6346910f Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Wed, 8 Jan 2020 09:21:39 +0900 Subject: [PATCH] common: switch _exit to exit mentioned in #1472. --- common/os_calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/os_calls.c b/common/os_calls.c index 54b2c3ed..88b96e61 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -3400,7 +3400,7 @@ g_getenv(const char *name) int g_exit(int exit_code) { - _exit(exit_code); + exit(exit_code); return 0; }