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