ref: de505b2650948c2f4ada5368eaf8a019cf1099bc
dir: /lib/c/__assert.c/
#include <assert.h> #include <stdlib.h> #include <stdio.h> void __assert(char *exp, char *file, long line) { fprintf(stderr, "%s:%ld: assertion failed '%s'\n", file, line, exp); abort(); }