ref: 41850b088910e270b84f3a68b16c305556fa61a1
dir: /libc/src/assert.c/
/* See LICENSE file for copyright and license details. */ #include <assert.h> #include <stdlib.h> #include <stdio.h> void __assert(int status, char *exp, char *file, long line) { if (status) return; fprintf(stderr, "%s:%ld: assertion failed '%s'\n", file, line, exp); abort(); }