summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2008-11-06 23:01:41 +0100
committerHenrik Rydberg <rydberg@euromail.se>2008-11-06 23:01:41 +0100
commitd44b4794c679141a08fd802475bb542ecf5b7c51 (patch)
tree74251970cfbcc58d0252366be6e5e668149b8a48 /src/common.h
parent63de72d8d810e3692c96c7385b497bb4d68ef54a (diff)
ok, fast (but not fastest) matcher in place, no check output...
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h
index 5a83f95..c57ae1a 100644
--- a/src/common.h
+++ b/src/common.h
@@ -7,6 +7,7 @@
7#include <xf86Xinput.h> 7#include <xf86Xinput.h>
8#include <linux/input.h> 8#include <linux/input.h>
9#include <errno.h> 9#include <errno.h>
10#include <match/match.h>
10//#include <exevents.h> 11//#include <exevents.h>
11 12
12//////////////////////////////////////////////////////// 13////////////////////////////////////////////////////////
@@ -27,8 +28,6 @@
27#define ABS_MT_POSITION_X 0x35 28#define ABS_MT_POSITION_X 0x35
28#define ABS_MT_POSITION_Y 0x36 29#define ABS_MT_POSITION_Y 0x36
29 30
30typedef int bool;
31
32#define SYSCALL(call) while (((call) == -1) && (errno == EINTR)) 31#define SYSCALL(call) while (((call) == -1) && (errno == EINTR))
33 32
34//////////////////////////////////////////////////////// 33////////////////////////////////////////////////////////