X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libiberty%2Fstrchr.c;h=935805ef4f4d236f49be446d7c2c139b60c10996;hb=a89ef955863b1fcc19f862bf6c15b02650040f67;hp=1f71c5143d08814b675d80e01a886e6741a4276c;hpb=a3a8a3df15ba3bfeaad5a3fa695b1736c2a33fd1;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libiberty/strchr.c b/libiberty/strchr.c index 1f71c5143d0..935805ef4f4 100644 --- a/libiberty/strchr.c +++ b/libiberty/strchr.c @@ -16,9 +16,7 @@ null character, the results are undefined. #include char * -strchr (s, c) - register const char *s; - int c; +strchr (register const char *s, int c) { do { if (*s == c)