[ARM] Make _kill() a noreturn function.
AngelSWI_Reason_ReportException does not return accoring to the ARM documentation, so it is valid to mark _kill() as noreturn. This way, the compiler does not warn about _exit() returning a value despite being noreturn. 2018-10-01 Christophe Lyon <christophe.lyon@linaro.org> * libgloss/arm/_exit.c (_exit): Declare _kill() as noreturn. * libgloss/arm/_exit.c (_kill): Likewise. Remove the return statements. * newlib/libc/sys/arm/syscalls.c (_kill): Likewise..
This commit is contained in:
committed by
Richard Earnshaw
parent
f53ce01125
commit
8a7536e91d
@ -1,6 +1,6 @@
|
||||
#include <_ansi.h>
|
||||
|
||||
int _kill (int, int);
|
||||
int _kill (int, int) __attribute__((__noreturn__));
|
||||
void _exit (int);
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user