ref: 8e4b6f767689d4afc1fc7e365f0c4a6a4a17391e dir: /sys/src/libc/port/_assert.c/
#include <u.h> #include <libc.h> void (*__assert)(char*); void _assert(char *s) { if(__assert) (*__assert)(s); fprint(2, "assert failed: %s\n", s); abort(); }