diff options
Diffstat (limited to 'xorg-server/hw/xfree86/dummylib/xf86errorfverb.c')
-rw-r--r-- | xorg-server/hw/xfree86/dummylib/xf86errorfverb.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/xorg-server/hw/xfree86/dummylib/xf86errorfverb.c b/xorg-server/hw/xfree86/dummylib/xf86errorfverb.c new file mode 100644 index 000000000..94f030719 --- /dev/null +++ b/xorg-server/hw/xfree86/dummylib/xf86errorfverb.c @@ -0,0 +1,24 @@ + +#ifdef HAVE_XORG_CONFIG_H +#include <xorg-config.h> +#endif + +#include <X11/X.h> +#include "os.h" +#include "xf86.h" +#include "xf86Priv.h" + +/* + * Utility functions required by libxf86_os. + */ + +_X_EXPORT void +xf86ErrorFVerb(int verb, const char *format, ...) +{ + va_list ap; + + va_start(ap, format); + LogVWrite(verb, format, ap); + va_end(ap); +} + |