diff options
author | Daniel Stone <daniel@fooishbar.org> | 2011-06-14 17:43:36 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2011-08-19 16:11:00 +1000 |
commit | f5141b6c663d97f771fc7c86b32d8d43a1a003c0 (patch) | |
tree | be5d1152a8fe5bb344f36249094a870df18e4b03 | |
parent | 98e8481cf4911506403b8963fc32c61a74cf679e (diff) |
Shuffle include order around
Group X protocol/server includes together, and synaptics-internal
includes together.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
-rw-r--r-- | src/synaptics.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/synaptics.c b/src/synaptics.c index cf91b9f..362c18d 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -70,16 +70,16 @@ #include <xf86Xinput.h> #include <exevents.h> -#include "synaptics.h" -#include "synapticsstr.h" -#include "synaptics-properties.h" - #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 #include <X11/Xatom.h> #include <xserver-properties.h> #include <ptrveloc.h> #endif +#include "synaptics.h" +#include "synapticsstr.h" +#include "synaptics-properties.h" + typedef enum { NO_EDGE = 0, BOTTOM_EDGE = 1, |