diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-02 20:56:16 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-02 20:56:16 +0000 |
commit | 96d9a06694110826a348a616abc536765a86d4fd (patch) | |
tree | 09e7b482b38ac571a01e936fb91df16dd1eeef42 /findutils/grep.c | |
parent | ee7674aa004d1bf4b89c321d99549ab59de606ab (diff) | |
download | busybox-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 'findutils/grep.c')
-rw-r--r-- | findutils/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index fac296941..a24be248b 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -16,12 +16,12 @@ | |||
16 | * precompiled regex | 16 | * precompiled regex |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include "busybox.h" | ||
19 | #include <stdio.h> | 20 | #include <stdio.h> |
20 | #include <stdlib.h> | 21 | #include <stdlib.h> |
21 | #include <getopt.h> | 22 | #include <getopt.h> |
22 | #include <string.h> | 23 | #include <string.h> |
23 | #include <errno.h> | 24 | #include <errno.h> |
24 | #include "busybox.h" | ||
25 | #include "xregex.h" | 25 | #include "xregex.h" |
26 | 26 | ||
27 | 27 | ||