diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:57 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:48:57 +0000 |
commit | 9508a382f8a9f241dab097d921b6d290c1c3a776 (patch) | |
tree | fa456480bae7040c3f971a70b390f2d091c680b5 /hw/xfree86/dummylib/xf86msg.c | |
parent | ded6147bfb5d75ff1e67c858040a628b61bc17d1 (diff) |
Initial revision
Diffstat (limited to 'hw/xfree86/dummylib/xf86msg.c')
-rw-r--r-- | hw/xfree86/dummylib/xf86msg.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/hw/xfree86/dummylib/xf86msg.c b/hw/xfree86/dummylib/xf86msg.c new file mode 100644 index 000000000..bc8c76626 --- /dev/null +++ b/hw/xfree86/dummylib/xf86msg.c @@ -0,0 +1,22 @@ +/* $XFree86: xc/programs/Xserver/hw/xfree86/dummylib/xf86msg.c,v 1.1 2000/02/13 03:06:42 dawes Exp $ */ + +#include "X.h" +#include "os.h" +#include "xf86.h" +#include "xf86Priv.h" +#include "dummylib.h" + +/* + * Utility functions required by libxf86_os. + */ + +void +xf86Msg(MessageType type, const char *format, ...) +{ + va_list ap; + + va_start(ap, format); + VErrorFVerb(1, format, ap); + va_end(ap); +} + |