/usr/share/sdcc/lib/src/assert.c is in sdcc-libraries 2.9.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #include <stdio.h>
#include <stdlib.h>
void _assert(char *expr, const char *filename, unsigned int linenumber)
{
printf("Assert(%s) failed at line %u in file %s.\n",
expr, linenumber, filename);
while(1);
}
|