summaryrefslogtreecommitdiff
path: root/darwin-eprintf.c
blob: d5b255399131d539a4940d2969da36b55761d06c (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>

void __eprintf(const char * msg, const char * file, unsigned line, const char * e) {
    fprintf(stderr, msg, file, line, e);
    abort();
}