mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-22 18:30:06 +01:00
../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)
32 lines
299 B
C
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;
|
|
}
|