repo.or.cz
/
xorg_rtime.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[xorg_rtime.git]
/
xorg-server-1.4
/
hw
/
xfree86
/
dummylib
/
fatalerror.c
blob
e147c7303e6902d0959510578e2a0341af07e86e
1
#ifdef HAVE_XORG_CONFIG_H
2
#include <xorg-config.h>
3
#endif
4
5
#include <X11/X.h>
6
#include
"os.h"
7
#include
"xf86.h"
8
#include
"xf86Priv.h"
9
10
/*
11
* Utility functions required by libxf86_os.
12
*/
13
14
_X_EXPORT
void
15
FatalError
(
const char
*
f
, ...)
16
{
17
va_list
args
;
18
19
va_start
(
args
,
f
);
20
fprintf
(
stderr
,
"Fatal Error:
\n
"
);
21
vfprintf
(
stderr
,
f
,
args
);
22
va_end
(
args
);
23
exit
(
1
);
24
}
25