12 lines
133 B
C
12 lines
133 B
C
|
#include "xerror.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void fatal(const char *s)
|
||
|
{
|
||
|
perror(s);
|
||
|
exit(-1);
|
||
|
}
|