summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-20 13:16:28 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-20 16:31:51 +0100
commit0c97dd006198dac14acc8e1dca1b57f2c4ad12b3 (patch)
treeffe994f20ddaf002d3e82e7cf6f9d4dc721868ff /commands
parent00df6b46373020348d27d6cc83f2b13e7a940935 (diff)
downloadbarebox-0c97dd006198dac14acc8e1dca1b57f2c4ad12b3.tar.gz
barebox-0c97dd006198dac14acc8e1dca1b57f2c4ad12b3.tar.xz
move prototypes for envfs_* to envfs.h
environment.h is for environment variables, not for the environment storage (envfs), so move the prototypes to envfs.h Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/loadenv.c2
-rw-r--r--commands/saveenv.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/loadenv.c b/commands/loadenv.c
index 48284d7a03..14b964340b 100644
--- a/commands/loadenv.c
+++ b/commands/loadenv.c
@@ -23,7 +23,7 @@
#include <common.h>
#include <getopt.h>
#include <command.h>
-#include <environment.h>
+#include <envfs.h>
#include <fs.h>
static int do_loadenv(int argc, char *argv[])
diff --git a/commands/saveenv.c b/commands/saveenv.c
index dd0de7f75b..7f371a88dd 100644
--- a/commands/saveenv.c
+++ b/commands/saveenv.c
@@ -25,7 +25,7 @@
#include <errno.h>
#include <fs.h>
#include <fcntl.h>
-#include <environment.h>
+#include <envfs.h>
static int do_saveenv(int argc, char *argv[])
{