aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-25 17:10:30 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-25 17:10:30 +0000
commitcce79df57dcd10d06a073bd70effa431afb9e7f0 (patch)
tree0c2835e3607a1276d4c5d76c5c2ccb5e9950e4af /shell
parent24390903c895446fa993570157c3f60df8515da4 (diff)
downloadbusybox-w32-cce79df57dcd10d06a073bd70effa431afb9e7f0.tar.gz
busybox-w32-cce79df57dcd10d06a073bd70effa431afb9e7f0.tar.bz2
busybox-w32-cce79df57dcd10d06a073bd70effa431afb9e7f0.zip
Moved some #ifdefs down below #include "busybox.h" where they belong.
git-svn-id: svn://busybox.net/trunk/busybox@2436 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/lash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 892237b08..1d128355c 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -64,6 +64,8 @@
64#include <sys/wait.h> 64#include <sys/wait.h>
65#include <unistd.h> 65#include <unistd.h>
66#include <getopt.h> 66#include <getopt.h>
67#include "busybox.h"
68#include "cmdedit.h"
67 69
68#ifdef BB_LOCALE_SUPPORT 70#ifdef BB_LOCALE_SUPPORT
69#include <locale.h> 71#include <locale.h>
@@ -79,8 +81,6 @@
79#include <glob.h> 81#include <glob.h>
80#define expand_t glob_t 82#define expand_t glob_t
81#endif 83#endif
82#include "busybox.h"
83#include "cmdedit.h"
84 84
85 85
86static const int MAX_READ = 128; /* size of input buffer for `read' builtin */ 86static const int MAX_READ = 128; /* size of input buffer for `read' builtin */