summaryrefslogtreecommitdiff
path: root/include/linux/types.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2025-07-06 13:52:36 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2025-07-06 14:48:40 -0400
commitec23efce867a316f2f82df37fc5efd84bbdc7020 (patch)
treeda62ed067ebb785351fa707c277096d1f180176d /include/linux/types.h
parent60ec05df840012cdf9a6c384c96cb70ed402687f (diff)
Update bcachefs sources to b47c5ba55d59 bcachefs: silence userspace build warning
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include/linux/types.h')
-rw-r--r--include/linux/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/types.h b/include/linux/types.h
index 5ee5ebc6..a1473592 100644
--- a/include/linux/types.h
+++ b/include/linux/types.h
@@ -53,6 +53,12 @@ typedef __s16 s16;
typedef __u8 u8;
typedef __s8 s8;
+typedef unsigned char unchar;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+typedef unsigned long long ullong;
+
#ifdef __CHECKER__
#define __bitwise__ __attribute__((bitwise))
#else