aboutsummaryrefslogtreecommitdiffstats
path: root/match/match.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2008-11-08 22:00:50 +0100
committerHenrik Rydberg <rydberg@euromail.se>2008-11-08 22:00:50 +0100
commit2d96d426e063a4c2c33cabf9c6ebf570db1fcf1b (patch)
tree941af20ba688ee5da39190d626688394bf82567f /match/match.h
parent30f8e07f61c40fc3371445251972f36e1474b2b3 (diff)
downloadxorg-input-kobomultitouch-2d96d426e063a4c2c33cabf9c6ebf570db1fcf1b.tar.gz
xorg-input-kobomultitouch-2d96d426e063a4c2c33cabf9c6ebf570db1fcf1b.tar.bz2
xorg-input-kobomultitouch-2d96d426e063a4c2c33cabf9c6ebf570db1fcf1b.zip
culprit: step2a row should start at zero
plus cleanup Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'match/match.h')
-rw-r--r--match/match.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/match/match.h b/match/match.h
index 03bf600..8936de4 100644
--- a/match/match.h
+++ b/match/match.h
@@ -13,10 +13,6 @@
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) < (b) ? (b) : (a))
-#define GETBIT(m, x) ((m>>(x))&1U)
-#define SETBIT(m, x) (m|=(1U<<(x)))
-#define CLEARBIT(m, x) (m&=~(1U<<(x)))
-
typedef int bool;
////////////////////////////////////////////////////////