linux/const.h: Add _BITUL() and _BITULL()
[cascardo/linux.git] / include / uapi / linux / const.h
index c22c707..c872bfd 100644 (file)
@@ -21,4 +21,7 @@
 #define _AT(T,X)       ((T)(X))
 #endif
 
+#define _BITUL(x)      (_AC(1,UL) << (x))
+#define _BITULL(x)     (_AC(1,ULL) << (x))
+
 #endif /* !(_LINUX_CONST_H) */