18 lines
294 B
C
18 lines
294 B
C
#include "xerror.h"
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
void die(const char *func, int err)
|
|
{
|
|
fprintf(stderr, "%s: %s\n", func, strerror(err));
|
|
abort();
|
|
}
|
|
|
|
void bark(const char *func, int err)
|
|
{
|
|
fprintf(stderr, "%s: %s\n", func, strerror(err));
|
|
}
|