From: Mike Frysinger Date: Sat, 24 Sep 2005 06:07:15 +0000 (-0000) Subject: add a attribute_noreturn macro X-Git-Tag: 1_1_0~659 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0d65565210dbdd472335d504e2fe7039c179b68a;p=oweals%2Fbusybox.git add a attribute_noreturn macro --- diff --git a/include/libbb.h b/include/libbb.h index c380ed739..c92d97240 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -63,6 +63,8 @@ # define __restrict /* Ignore */ #endif +#define attribute_noreturn __attribute__ ((__noreturn__)) + /* Some useful definitions */ #define FALSE ((int) 0) #define TRUE ((int) 1)