diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-02 20:56:16 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-02 20:56:16 +0000 |
commit | e15d7573a1263fb364d1678c3a46be47a8b5e5ea (patch) | |
tree | 09e7b482b38ac571a01e936fb91df16dd1eeef42 /shell/ash.c | |
parent | ecae66ac16338d8cddb55e1782ebd8c5f670ff53 (diff) | |
download | busybox-w32-e15d7573a1263fb364d1678c3a46be47a8b5e5ea.tar.gz busybox-w32-e15d7573a1263fb364d1678c3a46be47a8b5e5ea.tar.bz2 busybox-w32-e15d7573a1263fb364d1678c3a46be47a8b5e5ea.zip |
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/shell/ash.c b/shell/ash.c index c8ccf19b5..5cdd7f006 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -44,11 +44,12 @@ | |||
44 | */ | 44 | */ |
45 | 45 | ||
46 | 46 | ||
47 | |||
48 | #define IFS_BROKEN | 47 | #define IFS_BROKEN |
49 | 48 | ||
50 | #define PROFILE 0 | 49 | #define PROFILE 0 |
51 | 50 | ||
51 | #include "busybox.h" | ||
52 | |||
52 | #ifdef DEBUG | 53 | #ifdef DEBUG |
53 | #define _GNU_SOURCE | 54 | #define _GNU_SOURCE |
54 | #endif | 55 | #endif |
@@ -76,12 +77,10 @@ | |||
76 | #include <paths.h> | 77 | #include <paths.h> |
77 | #include <setjmp.h> | 78 | #include <setjmp.h> |
78 | #include <signal.h> | 79 | #include <signal.h> |
79 | #include <stdint.h> | 80 | /*#include <stdint.h>*/ |
80 | #include <time.h> | 81 | #include <time.h> |
81 | #include <fnmatch.h> | 82 | #include <fnmatch.h> |
82 | 83 | ||
83 | |||
84 | #include "busybox.h" | ||
85 | #include "pwd_.h" | 84 | #include "pwd_.h" |
86 | 85 | ||
87 | #ifdef CONFIG_ASH_JOB_CONTROL | 86 | #ifdef CONFIG_ASH_JOB_CONTROL |