summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPaul Barker <paul.barker@sancloud.com>2022-05-05 15:32:41 +0000
committerTom Rini <trini@konsulko.com>2022-10-26 15:21:11 -0400
commit59b16e9df9b2eef2ec40824f1c189d175d095fc0 (patch)
treef59925af3bcecc4d1e8ca4ed75ee18e13d4a8032 /examples
parent47ef860a399a294fe30d3eadc33529090e5b8b2a (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>
Diffstat (limited to 'examples')
-rw-r--r--examples/standalone/hello_world.c1
1 files changed, 0 insertions, 1 deletions
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 <common.h>
#include <exports.h>
int hello_world(int argc, char *const argv[])