mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-29 06:50:07 +01:00
17 lines
221 B
C
17 lines
221 B
C
/* $XFree86$ */
|
|
|
|
#include "X.h"
|
|
#include "os.h"
|
|
#include "xf86.h"
|
|
#include "xf86Priv.h"
|
|
|
|
/*
|
|
* Utility functions required by libxf86_os.
|
|
*/
|
|
|
|
void
|
|
VErrorF(const char *f, va_list args)
|
|
{
|
|
vfprintf(stderr, f, args);
|
|
}
|
|
|