mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
11 lines
199 B
C
11 lines
199 B
C
#include <stdio.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();
|
|
}
|