From: Paul Barker Date: Thu, 5 May 2022 15:32:41 +0000 (+0000) Subject: examples: hello_world: Drop inclusion of common header X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=59b16e9df9b2eef2ec40824f1c189d175d095fc0;p=u-boot.git 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 --- 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[])