diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:33 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:33 +0000 |
commit | 349fefb716abd06a7f83c516b941b791d86d6f13 (patch) | |
tree | 78615597f5c682eb6400c262bddf7d5d1104a68b | |
parent | 01dc1c093d816ed484b91c0497666bd8a440e3b4 (diff) |
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
change "foo.h", "extensions/foo.h" and "X11/foo.h" to
<X11/extensions/foo.h> for extension headers, e.g. Xv.h;
change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
-rw-r--r-- | src/xf86Elo.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xf86Elo.c b/src/xf86Elo.c index c7c5ef3..af60516 100644 --- a/src/xf86Elo.c +++ b/src/xf86Elo.c @@ -73,17 +73,17 @@ #else /* XFREE86_V4 */ -#include "Xos.h" +#include <X11/Xos.h> #include <signal.h> #include <stdio.h> #define NEED_EVENTS -#include "X.h" -#include "Xproto.h" +#include <X11/X.h> +#include <X11/Xproto.h> #include "inputstr.h" #include "scrnintstr.h" -#include "XI.h" -#include "XIproto.h" +#include <X11/extensions/XI.h> +#include <X11/extensions/XIproto.h> #if defined(sun) && !defined(i386) #include <errno.h> |