diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-04-09 20:52:26 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-04-09 20:52:26 -0700 |
commit | e98eb80509476459f207d902a2a8052b967e2d93 (patch) | |
tree | e6f717e6bdb7ad8bd3b44d7b06e243c2365126d5 /test | |
parent | 0280b10df90ff5fb5a38f9a61800338bcc15b8ca (diff) | |
download | xorg-lib-libxkbcommon-e98eb80509476459f207d902a2a8052b967e2d93.tar.gz |
test: Remove extraneous includes
These programs don't actually use the internal API.
Diffstat (limited to 'test')
-rw-r--r-- | test/namescomp.c | 6 | ||||
-rw-r--r-- | test/rulescomp.c | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/test/namescomp.c b/test/namescomp.c index 864a22a..1c64419 100644 --- a/test/namescomp.c +++ b/test/namescomp.c @@ -26,9 +26,11 @@ authorization from the authors. #include <stdlib.h> #include <stdio.h> -#include "xkbmisc.h" -#include "X11/extensions/XKBcommon.h" +#include <X11/X.h> +#include <X11/Xdefs.h> #include <X11/extensions/XKBstrcommon.h> +#include <X11/extensions/XKBrulescommon.h> +#include "X11/extensions/XKBcommon.h" #include "xkbcomp/utils.h" int main(int argc, char *argv[]) diff --git a/test/rulescomp.c b/test/rulescomp.c index 4dbe353..8046b49 100644 --- a/test/rulescomp.c +++ b/test/rulescomp.c @@ -26,10 +26,11 @@ authorization from the authors. #include <stdlib.h> #include <stdio.h> -#include "xkbmisc.h" -#include "xkbrules.h" -#include "X11/extensions/XKBcommon.h" +#include <X11/X.h> +#include <X11/Xdefs.h> #include <X11/extensions/XKBstrcommon.h> +#include <X11/extensions/XKBrulescommon.h> +#include "X11/extensions/XKBcommon.h" #include "xkbcomp/utils.h" int main(int argc, char *argv[]) |