From 9fb625ce05539fe6876a59ce1dcadb76b33c6f6e Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 1 Aug 2019 09:46:51 -0600 Subject: env: Move env_set() to env.h Move env_set() over to the new header file. Acked-by: Joe Hershberger Signed-off-by: Simon Glass --- common/cli_hush.c | 1 + common/console.c | 1 + common/hash.c | 1 + common/hwconfig.c | 1 + common/image-android.c | 1 + common/main.c | 1 + common/spl/spl_dfu.c | 1 + common/update.c | 1 + 8 files changed, 8 insertions(+) (limited to 'common') diff --git a/common/cli_hush.c b/common/cli_hush.c index 955e8fe..8f86e4a 100644 --- a/common/cli_hush.c +++ b/common/cli_hush.c @@ -75,6 +75,7 @@ #define __U_BOOT__ #ifdef __U_BOOT__ +#include #include /* malloc, free, realloc*/ #include /* isalpha, isdigit */ #include /* readline */ diff --git a/common/console.c b/common/console.c index d086fea..0f7e091 100644 --- a/common/console.c +++ b/common/console.c @@ -8,6 +8,7 @@ #include #include #include +#include #include #include #include diff --git a/common/hash.c b/common/hash.c index 413a5bf..d33e329 100644 --- a/common/hash.c +++ b/common/hash.c @@ -12,6 +12,7 @@ #ifndef USE_HOSTCC #include #include +#include #include #include #include diff --git a/common/hwconfig.c b/common/hwconfig.c index e9e956a..72f3c4e 100644 --- a/common/hwconfig.c +++ b/common/hwconfig.c @@ -11,6 +11,7 @@ #ifndef HWCONFIG_TEST #include #include +#include #include #include #include diff --git a/common/image-android.c b/common/image-android.c index 6c9568a..264bf90 100644 --- a/common/image-android.c +++ b/common/image-android.c @@ -4,6 +4,7 @@ */ #include +#include #include #include #include diff --git a/common/main.c b/common/main.c index ce39c8d..3a657c3 100644 --- a/common/main.c +++ b/common/main.c @@ -10,6 +10,7 @@ #include #include #include +#include #include /* diff --git a/common/spl/spl_dfu.c b/common/spl/spl_dfu.c index c0225dc..a05b867 100644 --- a/common/spl/spl_dfu.c +++ b/common/spl/spl_dfu.c @@ -6,6 +6,7 @@ * Ravi B */ #include +#include #include #include #include diff --git a/common/update.c b/common/update.c index f237ea5..457b29f 100644 --- a/common/update.c +++ b/common/update.c @@ -17,6 +17,7 @@ #endif #include +#include #include #include #include -- cgit v1.1