chiark / gitweb /
common.h: bitmaps: Provide PRBITMASK
[xf86-input-mtrack.git] / include / common.h
index 44537f8f083f402b0c180f1a1d59cc97417f39b8..b774ead444e756544904442dc3a77a8143823ce0 100644 (file)
@@ -52,6 +52,7 @@ typedef unsigned int bitmask_t;
 #define SETBIT(m, x) (m |= BITMASK(x))
 #define CLEARBIT(m, x) (m &= ~BITMASK(x))
 #define MODBIT(m, x, b) ((b) ? SETBIT(m, x) : CLEARBIT(m, x))
+#define PRBITMASK "0x%x"
 
 #define ABSVAL(x) ((x) < 0 ? -1*(x) : (x))
 #define MINVAL(x, y) ((x) < (y) ? (x) : (y))