From 59b16e9df9b2eef2ec40824f1c189d175d095fc0 Mon Sep 17 00:00:00 2001 From: Paul Barker Date: Thu, 5 May 2022 15:32:41 +0000 Subject: [PATCH] examples: hello_world: Drop inclusion of common header The "common.h" header is not covered by the licensing exception for standalone applications. Let's drop inclusion of this header from the hello_world example to prove that a standalone app can be built without it. Signed-off-by: Paul Barker Reviewed-by: Tom Rini --- examples/standalone/hello_world.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/standalone/hello_world.c b/examples/standalone/hello_world.c index 263cd9ca07..27ec379315 100644 --- a/examples/standalone/hello_world.c +++ b/examples/standalone/hello_world.c @@ -4,7 +4,6 @@ * Wolfgang Denk, DENX Software Engineering, wd@denx.de. */ -#include #include int hello_world(int argc, char *const argv[]) -- 2.39.5