X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fexit.c;fp=util%2Fexit.c;h=6ec53841d87cb36084b645364080cb988fc5c722;hb=0f78f3fe78e859d9f0d3f0d3e13fcd28085dd427;hp=0000000000000000000000000000000000000000;hpb=91500c092797da8e769f1e63ff0c6bd67aad0fc8;p=idzebra-moved-to-github.git diff --git a/util/exit.c b/util/exit.c new file mode 100644 index 0000000..6ec5384 --- /dev/null +++ b/util/exit.c @@ -0,0 +1,39 @@ +/* $Id: exit.c,v 1.1 2006-11-14 08:12:10 adam Exp $ + Copyright (C) 1995-2006 + Index Data ApS + +This file is part of the Zebra server. + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#include +#include + +void zebra_exit(const char *msg) +{ + yaz_log(YLOG_LOG, "%s: exit", msg); + exit(1); +} + +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +