Browse Source

Revert "(my_exit): cleanup no attribute noreturn warning."

This reverts commit b91ab44b43570ebebe58627efedcb2adb4066023.
Yury V. Zaytsev 8 years ago
parent
commit
f09d863ddf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/utilunix.c

+ 2 - 1
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);
 }