mirror of
https://github.com/LIV2/libnix.git
synced 2025-12-06 00:23:08 +00:00
12 lines
219 B
C
12 lines
219 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
void __eprintf(const char *format,...) /* for asserts */
|
|
{ va_list args;
|
|
va_start(args,format);
|
|
vfprintf(stderr,format,args);
|
|
va_end(args);
|
|
abort();
|
|
}
|