diff options
author | Rafal Jaworowski <raj@semihalf.com> | 2008-01-09 18:05:27 +0100 |
---|---|---|
committer | Rafal Jaworowski <raj@semihalf.com> | 2008-01-09 18:05:27 +0100 |
commit | 26a41790f8eba19ad450e18ae91351daf485b3e2 (patch) | |
tree | 54995954fbdd7cb9c19f9f0eb491f4e3dbac1998 /include/common.h | |
parent | 6007f3251c0967adc13f2ed8be1b924ddc30124d (diff) | |
download | u-boot-imx-26a41790f8eba19ad450e18ae91351daf485b3e2.zip u-boot-imx-26a41790f8eba19ad450e18ae91351daf485b3e2.tar.gz u-boot-imx-26a41790f8eba19ad450e18ae91351daf485b3e2.tar.bz2 |
Globalize envmatch()
The newly introduced API (routines related to env vars) will need to call
it.
Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h index 493417f..da2f01b 100644 --- a/include/common.h +++ b/include/common.h @@ -227,6 +227,7 @@ extern ulong load_addr; /* Default Load Address */ /* common/cmd_nvedit.c */ int env_init (void); void env_relocate (void); +int envmatch (uchar *, int); char *getenv (char *); int getenv_r (char *name, char *buf, unsigned len); int saveenv (void); |