summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2005-04-20 12:25:34 +0000
committerDaniel Stone <daniel@fooishbar.org>2005-04-20 12:25:34 +0000
commitb538c125e4cd103c743ed26ec4d288d4a5b35b24 (patch)
tree9ee53f11692e435d7ccba074762aa9a47ffcf4f2
parent39eeceba31b6a8b42be175db472c92b4aebb82c6 (diff)
downloadxorg-driver-xf86-input-mouse-sco_port_update.tar.gz
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_5XORG-6_8_99_4sco_port_update
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/mouse.c10
-rw-r--r--src/pnp.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/mouse.c b/src/mouse.c
index 63e3ca0..b11d1f4 100644
--- a/src/mouse.c
+++ b/src/mouse.c
@@ -1,4 +1,4 @@
-/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c,v 1.4 2004/10/17 20:29:35 agd5f Exp $ */
+/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c,v 1.5 2004/10/17 22:45:57 agd5f Exp $ */
/* $XFree86: xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c,v 1.79 2003/11/03 05:11:48 tsi Exp $ */
/*
*
@@ -46,14 +46,14 @@
*/
#define NEED_EVENTS
-#include "X.h"
-#include "Xproto.h"
+#include <X11/X.h>
+#include <X11/Xproto.h>
#include "xf86.h"
#ifdef XINPUT
-#include "XI.h"
-#include "XIproto.h"
+#include <X11/extensions/XI.h>
+#include <X11/extensions/XIproto.h>
#include "extnsionst.h"
#include "extinit.h"
#else
diff --git a/src/pnp.c b/src/pnp.c
index 80dc667..eca608b 100644
--- a/src/pnp.c
+++ b/src/pnp.c
@@ -22,8 +22,8 @@
*/
#define NEED_EVENTS
-#include "X.h"
-#include "Xproto.h"
+#include <X11/X.h>
+#include <X11/Xproto.h>
#include "inputstr.h"
#include "scrnintstr.h"
#include "xf86.h"