summaryrefslogtreecommitdiff
path: root/cmd/upl.c
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-05-14 16:46:03 -0600
committerTom Rini <[email protected]>2025-05-29 08:29:16 -0600
commitdcb7d927d181b5798c6fd4a1b1650cd821e3b6ed (patch)
tree53a9d2469173205baee1767d212165cd187887e4 /cmd/upl.c
parentd0e1ee6590420ec13cfe3fa373679054ac08a184 (diff)
global: Avoid indirect inclusion of <env.h> from <command.h>
The include file <command.h> does not need anything from <env.h>. Furthermore, include/env.h itself includes other headers which can lead to longer indirect inclusion paths. To prepare to remove <env.h> from <command.h> fix all of the places which had relied on this indirect inclusion to instead include <env.h> directly. Reviewed-by: Mattijs Korpershoek <[email protected]> # android, bcb Reviewed-by: Jerome Forissier <[email protected]> # spawn Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/upl.c')
-rw-r--r--cmd/upl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/upl.c b/cmd/upl.c
index c9a823bbc06..ef2183d8528 100644
--- a/cmd/upl.c
+++ b/cmd/upl.c
@@ -12,6 +12,7 @@
#include <alist.h>
#include <command.h>
#include <display_options.h>
+#include <env.h>
#include <mapmem.h>
#include <string.h>
#include <upl.h>