summaryrefslogtreecommitdiff
path: root/static/plan9-4e/man2/assert.2
diff options
context:
space:
mode:
Diffstat (limited to 'static/plan9-4e/man2/assert.2')
-rw-r--r--static/plan9-4e/man2/assert.225
1 files changed, 25 insertions, 0 deletions
diff --git a/static/plan9-4e/man2/assert.2 b/static/plan9-4e/man2/assert.2
new file mode 100644
index 00000000..3e952348
--- /dev/null
+++ b/static/plan9-4e/man2/assert.2
@@ -0,0 +1,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 if(cond);else _assert("cond")
+.PP
+.B
+void _assert(int 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