/* errexit.c -- print message and exit * * Part of HTML-XML-utils, see: * http://www.w3.org/Tools/HTML-XML-utils/ * * Copyright © 1994-2000 World Wide Web Consortium * See http://www.w3.org/Consortium/Legal/copyright-software * * Author: Bert Bos * Created: 12 May 1998 **/ #include "config.h" #include #include #include #ifdef HAVE_STRING_H # include #elif HAVE_STRINGS_H # include #endif #include "export.h" /* errexit -- print message and exit */ EXPORT int errexit(char *format,...) { va_list ap; va_start(ap, format); vfprintf(stderr, format, ap); va_end(ap); exit(1); }