noreturn
#define NORETURN __declspec(noreturn)
#define NORETURN __attribute__((noreturn))
#define _Noreturn [[noreturn]]
static noreturn boolean_t
static noreturn void
# if __has_c_attribute(noreturn)
# define ATTRIBUTE_NORETURN [[noreturn]]
# define ATTRIBUTE_NORETURN __attribute__((noreturn))
#define _Noreturn [[noreturn]]
__attribute__ ((noreturn));
__attribute__ ((noreturn));
void stop (void) __attribute__ ((noreturn));
void grub_reboot (void) __attribute__ ((noreturn));
void grub_halt (int no_apm) __attribute__ ((noreturn));
__attribute__ ((noreturn));
__attribute__ ((noreturn));
void linux_boot (void) __attribute__ ((noreturn));
void big_linux_boot (void) __attribute__ ((noreturn));
void multi_boot (int start, int mb_info) __attribute__ ((noreturn));
__attribute__ ((noreturn)) void func1(int a);
void func2(int a) __attribute__ ((noreturn));
__attribute__ ((noreturn))
&& __has_attribute(noreturn) \
#define l_noret void __attribute__((noreturn))
#define l_noret void __declspec(noreturn)