mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40:02 +01:00
The symbol controls whether to include dix-config.h, and it's always set, thus we don't need it (and dozens of ifdef's) anymore. This commit only removes them from our own source files, where we can guarantee that dix-config.h is present - leaving the (potentially exported) headers untouched. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
12 lines
172 B
C
12 lines
172 B
C
|
|
#include <dix-config.h>
|
|
|
|
#include <X11/X.h>
|
|
#include "windowstr.h"
|
|
#include <xkbsrv.h>
|
|
|
|
int
|
|
XkbDDXPrivate(DeviceIntPtr dev, KeyCode key, XkbAction *act)
|
|
{
|
|
return 0;
|
|
}
|