X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fstrchr.c;h=935805ef4f4d236f49be446d7c2c139b60c10996;hb=5817ffd1f81cf2d2ae173071775e6e620aa41283;hp=1f71c5143d08814b675d80e01a886e6741a4276c;hpb=2ee563b53258d390d7446e90a67f465d504ae44c;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/strchr.c b/libiberty/strchr.c index 1f71c5143d..935805ef4f 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)