X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrstr.c;h=b16799a2e6486f4bfd94749474cdf5afe3889735;hb=6e93b42a69e7a51b301e7ab383022dd4f59c2081;hp=cdee6211757546f99f4f6613d2ec472f9750c16a;hpb=4838f42df1843ec9f5058d74c8114c1fcb332a89;p=gnulib.git 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;