summaryrefslogtreecommitdiff
path: root/findutils/grep.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-28 16:06:25 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-28 16:06:25 +0000
commit6b6b3f6ef2f44898a8bddfaae93cc4ef3aa79661 (patch)
treeac9548482088082aece2d2df1406c72339c77b6f /findutils/grep.c
parentc7c41d306b8e172a2fba432d3c4b9f97b9963816 (diff)
downloadbusybox-w32-6b6b3f6ef2f44898a8bddfaae93cc4ef3aa79661.tar.gz
busybox-w32-6b6b3f6ef2f44898a8bddfaae93cc4ef3aa79661.tar.bz2
busybox-w32-6b6b3f6ef2f44898a8bddfaae93cc4ef3aa79661.zip
Stuf
Diffstat (limited to 'findutils/grep.c')
-rw-r--r--findutils/grep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index 44ca02834..9495bf858 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -47,9 +47,9 @@ static const char grep_usage[] =
47extern int grep_main (int argc, char **argv) 47extern int grep_main (int argc, char **argv)
48{ 48{
49 FILE *fp; 49 FILE *fp;
50 const char *needle; 50 char *needle;
51 const char *name; 51 char *name;
52 const char *cp; 52 char *cp;
53 int tellName=TRUE; 53 int tellName=TRUE;
54 int ignoreCase=FALSE; 54 int ignoreCase=FALSE;
55 int tellLine=FALSE; 55 int tellLine=FALSE;