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

This reverts commit b91ab44b43.
This commit is contained in:
Yury V. Zaytsev 2017-03-04 18:27:02 +01:00
parent 8f49a93aa2
commit f09d863ddf

View File

@ -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);
}