commit | 489d774765a612d8078d1cad2f1bddd78adb11f3 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Thu May 01 10:47:18 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Tue May 13 11:30:08 2025 -0600 |
tree | 2bd834d8f2404c4a401ec0382b82fa557553f114 | |
parent | 76f5dec68b8f46793b280345ba3dfd034f13ac59 [diff] |
cmd/cat.c: Add missing include This file references errno values and so needs to include <linux/errno.h>. Signed-off-by: Tom Rini <trini@konsulko.com>
diff --git a/cmd/cat.c b/cmd/cat.c index 6828b7b..3167cda 100644 --- a/cmd/cat.c +++ b/cmd/cat.c
@@ -8,6 +8,7 @@ #include <fs.h> #include <malloc.h> #include <mapmem.h> +#include <linux/errno.h> static int do_cat(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])