1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

env: Move env_reloc() to env.h

Move env_reloc() over to the new header file.

Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2019-08-01 09:47:02 -06:00
committed by Tom Rini
parent b5f449e8e9
commit c62f62b0fc
2 changed files with 7 additions and 4 deletions

View File

@@ -278,4 +278,11 @@ void env_set_default(const char *s, int flags);
*/
int env_get_char(int index);
/**
* env_reloc() - Relocate the 'env' sub-commands
*
* This is used for those unfortunate archs with crappy toolchains
*/
void env_reloc(void);
#endif