xserver/hw/xfree86/os-support/stub/stub_init.c
Jon Turney 8837279869 Fix old-style definition warning for xf86OSInputThreadInit()
../hw/xfree86/os-support/stub/stub_init.c: In function ‘xf86OSInputThreadInit’:
../hw/xfree86/os-support/stub/stub_init.c:29:1: warning: old-style function definition [-Wold-style-definition]

(cherry picked from commit 7c266cafed)
2020-03-22 15:34:32 -07:00

32 lines
299 B
C

#ifdef HAVE_XORG_CONFIG_H
#include <xorg-config.h>
#endif
#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;
}