mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +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.
|
||||
*/
|
||||
#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; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue