From f09d863ddf3bb11faccc1c2871bbe7775e258eb2 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Sat, 4 Mar 2017 18:27:02 +0100 Subject: [PATCH] Revert "(my_exit): cleanup no attribute noreturn warning." This reverts commit b91ab44b43570ebebe58627efedcb2adb4066023. --- lib/utilunix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/utilunix.c b/lib/utilunix.c index f0f82ec6d..e2a8bafad 100644 --- a/lib/utilunix.c +++ b/lib/utilunix.c @@ -356,7 +356,8 @@ save_stop_handler (void) * @param status exit code */ -void __attribute__ ((noreturn)) my_exit (int status) +void +my_exit (int status) { _exit (status); }