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 /findutils/find.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 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/findutils/find.c b/findutils/find.c index 17a1a5656..f8bcccaf5 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -7,22 +7,10 @@ | |||
7 | * Reworked by David Douthitt <n9ubh@callsign.net> and | 7 | * Reworked by David Douthitt <n9ubh@callsign.net> and |
8 | * Matt Kraai <kraai@alumni.carnegiemellon.edu>. | 8 | * Matt Kraai <kraai@alumni.carnegiemellon.edu>. |
9 | * | 9 | * |
10 | * This program is free software; you can redistribute it and/or modify | 10 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
11 | * it under the terms of the GNU General Public License as published by | ||
12 | * the Free Software Foundation; either version 2 of the License, or | ||
13 | * (at your option) any later version. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
18 | * General Public License for more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this program; if not, write to the Free Software | ||
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
23 | * | ||
24 | */ | 11 | */ |
25 | 12 | ||
13 | #include "busybox.h" | ||
26 | #include <stdio.h> | 14 | #include <stdio.h> |
27 | #include <unistd.h> | 15 | #include <unistd.h> |
28 | #include <dirent.h> | 16 | #include <dirent.h> |
@@ -31,7 +19,6 @@ | |||
31 | #include <fnmatch.h> | 19 | #include <fnmatch.h> |
32 | #include <time.h> | 20 | #include <time.h> |
33 | #include <ctype.h> | 21 | #include <ctype.h> |
34 | #include "busybox.h" | ||
35 | 22 | ||
36 | //XXX just found out about libbb/messages.c . maybe move stuff there ? - ghoz | 23 | //XXX just found out about libbb/messages.c . maybe move stuff there ? - ghoz |
37 | static const char msg_req_arg[] = "option `%s' requires an argument"; | 24 | static const char msg_req_arg[] = "option `%s' requires an argument"; |