summaryrefslogtreecommitdiff
path: root/sys/man/2/assert
blob: 56e092f86dfdc8e6bb2b458e0d64b3ca9a0aeeb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.TH ASSERT 2
.SH NAME
assert \- check program invariants
.SH SYNOPSIS
.B #include <u.h>
.br
.B #include <libc.h>
.PP
.B
#define assert(cond) if(cond);else _assert("cond")
.PP
.B
void _assert(char* cond)
.SH DESCRIPTION
.I Assert
is a preprocessor macro that
(via
.IR _assert )
prints a message and calls
.I abort
when
.I cond
is false.
.SH SOURCE
.B /sys/src/libc/port/_assert.c