mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-29 08:42:28 +00:00
Fix regression in documentation page
This commit is contained in:
parent
002df0f16c
commit
539bddce8c
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ void __assert_fail(const char *, const char *, int) hidden relegated;
|
||||||
* In `MODE=tiny` these assertions are redefined as undefined behavior.
|
* In `MODE=tiny` these assertions are redefined as undefined behavior.
|
||||||
*/
|
*/
|
||||||
#define _npassert(x) \
|
#define _npassert(x) \
|
||||||
__extension__({ \
|
({ \
|
||||||
if (__builtin_expect(!(x), 0)) { \
|
if (__builtin_expect(!(x), 0)) { \
|
||||||
notpossible; \
|
notpossible; \
|
||||||
} \
|
} \
|
||||||
|
@ -63,7 +63,7 @@ void __assert_fail(const char *, const char *, int) hidden relegated;
|
||||||
* that's capable of debugging this macro.
|
* that's capable of debugging this macro.
|
||||||
*/
|
*/
|
||||||
#define _unassert(x) \
|
#define _unassert(x) \
|
||||||
__extension__({ \
|
({ \
|
||||||
if (__builtin_expect(!(x), 0)) { \
|
if (__builtin_expect(!(x), 0)) { \
|
||||||
unreachable; \
|
unreachable; \
|
||||||
} \
|
} \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue