diff options
| author | Jim Meyering <jim@meyering.net> | 1998-12-07 03:12:10 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1998-12-07 03:12:10 +0000 |
| commit | 7d60769bead4b89a096e10bacbb503702ea6e44c (patch) | |
| tree | c03ba9bef1c0339b2f4cbe993acff983cddb2146 /lib/strstr.c | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-7d60769bead4b89a096e10bacbb503702ea6e44c.tar.gz coreutils-7d60769bead4b89a096e10bacbb503702ea6e44c.zip | |
ansideclify
Diffstat (limited to 'lib/strstr.c')
| -rw-r--r-- | lib/strstr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/strstr.c b/lib/strstr.c index cdee62117..b16799a2e 100644 --- a/lib/strstr.c +++ b/lib/strstr.c @@ -30,9 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ typedef unsigned chartype; char * -strstr (phaystack, pneedle) - const char *phaystack; - const char *pneedle; +strstr (const char *phaystack, const char *pneedle) { register const unsigned char *haystack, *needle; register chartype b, c; |
