Files
xserver/hw/xfree86/os-support/stub/stub_init.c
Enrico Weigelt, metux IT consult 7aa3fa54d4 xfree86: unexport os-support functions
These aren't called by drivers/modules, so no need to export them.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1456>
2024-04-18 00:40:39 +00:00

34 lines
328 B
C

#ifdef HAVE_XORG_CONFIG_H
#include <xorg-config.h>
#endif
#include "xf86_os_support.h"
#include "xf86_OSlib.h"
void
xf86OpenConsole(void)
{
}
void
xf86CloseConsole(void)
{
}
int
xf86ProcessArgument(int argc, char *argv[], int i)
{
return 0;
}
void
xf86UseMsg(void)
{
}
void
xf86OSInputThreadInit(void)
{
return;
}