diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-12-11 22:16:24 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-12-13 11:46:55 -0700 |
commit | 170ab11075d3be56e89d6444abf1148329130f4b (patch) | |
tree | d3088ad532f4f4a0082f625ce50cfd120d6a6a1d /include/environment.h | |
parent | be11235ab802844e12d84921a38fd8ae4ddda080 (diff) | |
download | u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.zip u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.tar.gz u-boot-imx-170ab11075d3be56e89d6444abf1148329130f4b.tar.bz2 |
env: Add support for callbacks to environment vars
Add support for per-variable callbacks to the "hashtable" functions.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
!!!fix comment in callback
Diffstat (limited to 'include/environment.h')
-rw-r--r-- | include/environment.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/environment.h b/include/environment.h index 4b19f32..6c30215 100644 --- a/include/environment.h +++ b/include/environment.h @@ -164,6 +164,8 @@ extern void env_reloc(void); #ifndef DO_DEPS_ONLY +#include <env_attr.h> +#include <env_callback.h> #include <search.h> extern struct hsearch_data env_htab; |