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>
diff --git a/include/env.h b/include/env.h
index 42d8bcf..727f585 100644
--- a/include/env.h
+++ b/include/env.h
@@ -278,4 +278,11 @@
*/
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