diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-06-14 23:07:16 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-06-16 14:08:47 -0400 |
commit | f3ab07db7394cd2142ef9cc5cbc62b4bdff21d6d (patch) | |
tree | 481fd1e3ed8cdc3b8885214444d3331720d3d487 | |
parent | 8bc27da7054c4c972a6965a36febfa812238f83f (diff) |
fix missing include
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | linux/sort.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/sort.c b/linux/sort.c index ecce71c5..b01a9d91 100644 --- a/linux/sort.c +++ b/linux/sort.c @@ -12,6 +12,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include <linux/compiler.h> #include <linux/types.h> #include <linux/export.h> #include <linux/sort.h> |