summaryrefslogtreecommitdiff
path: root/hw/xfree86/dummylib/xf86errorfverb.c
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-04 01:57:46 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-12-04 02:42:28 -0200
commit5dbe70dd52fd8daf8d0797951cc5a758d2c3b44c (patch)
tree3b3c5f1cabfc63049e15fb0d6b9430897cd71175 /hw/xfree86/dummylib/xf86errorfverb.c
parentf841d4e3cccbde02e91c948f5ffb9e32c8c3b3cc (diff)
downloadxserver-5dbe70dd52fd8daf8d0797951cc5a758d2c3b44c.tar.gz
Remove dummylib.
Only cvt required it, and only used XNF{,c}alloc via xnf{,c}alloc macros. Based on patch by Eric Anholt.
Diffstat (limited to 'hw/xfree86/dummylib/xf86errorfverb.c')
-rw-r--r--hw/xfree86/dummylib/xf86errorfverb.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/hw/xfree86/dummylib/xf86errorfverb.c b/hw/xfree86/dummylib/xf86errorfverb.c
deleted file mode 100644
index b8944559c..000000000
--- a/hw/xfree86/dummylib/xf86errorfverb.c
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#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.
- */
-
-void
-xf86ErrorFVerb(int verb, const char *format, ...)
-{
- va_list ap;
-
- va_start(ap, format);
- LogVWrite(verb, format, ap);
- va_end(ap);
-}
-