Fix regression in documentation page

This commit is contained in:
Justine Tunney 2022-11-06 01:16:29 -07:00
parent 002df0f16c
commit 539bddce8c
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -36,7 +36,7 @@ void __assert_fail(const char *, const char *, int) hidden relegated;
* In `MODE=tiny` these assertions are redefined as undefined behavior.
*/
#define _npassert(x) \
__extension__({ \
({ \
if (__builtin_expect(!(x), 0)) { \
notpossible; \
} \
@ -63,7 +63,7 @@ void __assert_fail(const char *, const char *, int) hidden relegated;
* that's capable of debugging this macro.
*/
#define _unassert(x) \
__extension__({ \
({ \
if (__builtin_expect(!(x), 0)) { \
unreachable; \
} \