8abcddc905afdb68881da5bd0bb4db80e38c4c98
[pazpar2-moved-to-github.git] / src / util.c
1 /* $Id: util.c,v 1.2 2007-01-08 12:43:41 adam Exp $ */
2
3 #include <stdlib.h>
4
5 #if HAVE_CONFIG_H
6 #include <cconfig.h>
7 #endif
8
9 #include <yaz/yaz-util.h>
10
11 void die(char *string, char *add)
12 {
13     yaz_log(YLOG_FATAL, "Fatal error: %s (%s)", string, add ? add : "");
14     abort();
15 }
16