blob: 7253289eb23c9d1d4d566637868a8b0bd649b409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* This file is part of the software similarity tester SIM.
Written by Dick Grune, Vrije Universiteit, Amsterdam.
$Id: error.c,v 2.4 1998/02/03 14:28:22 dick Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include "sim.h"
#include "error.h"
void
fatal(const char *msg) {
fprintf(stderr, "%s: %s\n", progname, msg);
exit(1);
}
|