summaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
authorMark Whitley2001-04-25 17:10:30 +0000
committerMark Whitley2001-04-25 17:10:30 +0000
commit4b541a8817425457a97a7033d3a0e0495d9948aa (patch)
tree0c2835e3607a1276d4c5d76c5c2ccb5e9950e4af /sh.c
parent67d7fe66e753aa1e96639a10a0a9a781912c74ca (diff)
downloadbusybox-4b541a8817425457a97a7033d3a0e0495d9948aa.zip
busybox-4b541a8817425457a97a7033d3a0e0495d9948aa.tar.gz
Moved some #ifdefs down below #include "busybox.h" where they belong.
Diffstat (limited to 'sh.c')
-rw-r--r--sh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh.c b/sh.c
index 892237b..1d12835 100644
--- a/sh.c
+++ b/sh.c
@@ -64,6 +64,8 @@
#include <sys/wait.h>
#include <unistd.h>
#include <getopt.h>
+#include "busybox.h"
+#include "cmdedit.h"
#ifdef BB_LOCALE_SUPPORT
#include <locale.h>
@@ -79,8 +81,6 @@
#include <glob.h>
#define expand_t glob_t
#endif
-#include "busybox.h"
-#include "cmdedit.h"
static const int MAX_READ = 128; /* size of input buffer for `read' builtin */