Просмотр исходного кода

(my_exit): cleanup no attribute noreturn warning.

utilunix.c:360:1: error: function might be candidate for attribute 'noreturn' [-Wsuggest-attribute=noreturn]

Signed-off-by: Andreas Mohr <and@gmx.li>
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Andreas Mohr 8 лет назад
Родитель
Сommit
b91ab44b43
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      lib/utilunix.c

+ 1 - 2
lib/utilunix.c

@@ -356,8 +356,7 @@ save_stop_handler (void)
  * @param status exit code
  */
 
-void
-my_exit (int status)
+void __attribute__ ((noreturn)) my_exit (int status)
 {
     _exit (status);
 }