aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:56:16 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-06-02 20:56:16 +0000
commit96d9a06694110826a348a616abc536765a86d4fd (patch)
tree09e7b482b38ac571a01e936fb91df16dd1eeef42 /shell/ash.c
parentee7674aa004d1bf4b89c321d99549ab59de606ab (diff)
downloadbusybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.gz
busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.bz2
busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.zip
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early. git-svn-id: svn://busybox.net/trunk/busybox@15267 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c7
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