diff options
author | Paul Barker | 2022-05-05 15:32:41 +0000 |
---|---|---|
committer | Tom Rini | 2022-10-26 15:21:11 -0400 |
commit | 59b16e9df9b2eef2ec40824f1c189d175d095fc0 (patch) | |
tree | f59925af3bcecc4d1e8ca4ed75ee18e13d4a8032 | |
parent | 47ef860a399a294fe30d3eadc33529090e5b8b2a (diff) |
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 <paul.barker@sancloud.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | examples/standalone/hello_world.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/standalone/hello_world.c b/examples/standalone/hello_world.c index 263cd9ca079..27ec3793155 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 <common.h> #include <exports.h> int hello_world(int argc, char *const argv[]) |