diff options
author | Tom Rini <trini@konsulko.com> | 2025-05-14 16:46:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-29 08:29:16 -0600 |
commit | 64307118499db0be83db29cfcbd8860db1e44e37 (patch) | |
tree | 0a7e246db9ae4c3bdc3ac057e43a4915c300c7df /cmd/stackprot_test.c | |
parent | 0352eab7d373664c1c01b23154025b83ec0eadca (diff) |
global: Add <linux/string.h> instead of long indirect include path
In a number of cases we have C files which rely on a chain of indirect
include paths to get <linux/string.h> to be included via <command.h>. To
facilitate cleaning up <command.h> make this code directly include
<linux/string.h>.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/stackprot_test.c')
-rw-r--r-- | cmd/stackprot_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/stackprot_test.c b/cmd/stackprot_test.c index e7ff4a06158..78e9beba5bf 100644 --- a/cmd/stackprot_test.c +++ b/cmd/stackprot_test.c @@ -4,6 +4,7 @@ */ #include <command.h> +#include <linux/string.h> static int do_test_stackprot_fail(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |