ref: 1830eb96d8dc50e119b975ebe50e63bfe4c974cf 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(); }