diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-25 17:36:26 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-25 17:36:26 -0700 |
commit | 5cedd415bd1b379f96af4e2487b75fecc407759a (patch) | |
tree | 6e2ebf12b2f69ee43549008e73f43e24371e7bd9 /system/include/libc/assert.h | |
parent | a1fdf60cc92ce1a5fa4eee972c3d9a255c73bbb7 (diff) | |
parent | bc2c6ba21551f54c42047b01beeccf9daae7a03a (diff) |
Merge pull request #993 from waywardmonkeys/reinstate-attributes
Re-instate _ATTRIBUTE() usages.
Diffstat (limited to 'system/include/libc/assert.h')
-rw-r--r-- | system/include/libc/assert.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libc/assert.h b/system/include/libc/assert.h index 6035227f..8d112839 100644 --- a/system/include/libc/assert.h +++ b/system/include/libc/assert.h @@ -36,10 +36,10 @@ extern "C" { # endif /* !__ASSERT_FUNC */ #endif /* !NDEBUG */ -void _EXFUN(__assert, (const char *, int, const char *)); -/* _ATTRIBUTE ((__noreturn__))); */ -void _EXFUN(__assert_func, (const char *, int, const char *, const char *)); -/* _ATTRIBUTE ((__noreturn__))); */ +void _EXFUN(__assert, (const char *, int, const char *) + _ATTRIBUTE(noreturn)); +void _EXFUN(__assert_func, (const char *, int, const char *, const char *) + _ATTRIBUTE(noreturn)); #ifdef __cplusplus } |