aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/common.h b/src/common.h
index b1c3273..f64e114 100644
--- a/src/common.h
+++ b/src/common.h
@@ -30,9 +30,7 @@
#include <errno.h>
#include <match/match.h>
-////////////////////////////////////////////////////////
-
-// includes available in 2.6.30-rc5
+/* includes available in 2.6.30-rc5 */
#ifndef BTN_TOOL_QUADTAP
#define BTN_TOOL_QUADTAP 0x14f /* Four fingers on trackpad */
@@ -50,8 +48,6 @@
#define MT_TOOL_PEN 1
#endif
-////////////////////////////////////////////////////////
-
#define SYSCALL(call) while (((call) == -1) && (errno == EINTR))
#define BITMASK(x) (1U << (x))
@@ -60,6 +56,4 @@
#define SETBIT(m, x) (m |= BITMASK(x))
#define CLEARBIT(m, x) (m &= ~BITMASK(x))
-////////////////////////////////////////////////////////
-
#endif