authorgravatar for noam@pixelhero.devNoam Preil <noam@pixelhero.dev> 2020-07-08 00:33:44-04:00
committergravatar for noam@pixelhero.devNoam Preil <noam@pixelhero.dev> 2020-07-08 00:33:44-04:00
log9d92d62525324453694190528021ab0216af0ed5
tree61ee35084b6842f9e5d86ce773aadcd7374ee9a0
parente2aad33d4eafe482fa145dc971a423307ae83a39
signature Commit is signed but in an unrecognized format.

CBE: Only try to use GNU attribute when __GNUC__is set


1 files changed, 1 insertions(+), 1 deletions(-)

src-self-hosted/cbe.h+1-1
......@@ -1,6 +1,6 @@
11#if __STDC_VERSION__ >= 201112L
22#define noreturn _Noreturn
3#elif !__STRICT_ANSI__
3#elif __GNUC__ && !__STRICT_ANSI__
44#define noreturn __attribute__ ((noreturn))
55#else
66#define noreturn