xserver/hw/xfree86/dummylib/fatalerror.c
Egbert Eich 505fe2ba30 23. Merged with XFree86 4.4.0. Added changes that went into infected files.
Reverted darwin/bundle/**/Credits.rtf to XFree86 versions to avoid
    future conflicts on ASCII but not humal readable files. (There should
    probably be separate CreditsXorg.rtf files) (Egbert Eich).
2004-03-05 13:41:12 +00:00

23 lines
327 B
C

/* $XFree86$ */
#include "X.h"
#include "os.h"
#include "xf86.h"
#include "xf86Priv.h"
/*
* Utility functions required by libxf86_os.
*/
void
FatalError(const char *f, ...)
{
va_list args;
va_start(args, f);
fprintf(stderr, "Fatal Error:\n");
vfprintf(stderr, f, args);
va_end(args);
exit(1);
}