X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=libiberty%2Fstrchr.c;h=935805ef4f4d236f49be446d7c2c139b60c10996;hb=348fe36b1d64f12c60e08f6313520b3191663063;hp=1f71c5143d08814b675d80e01a886e6741a4276c;hpb=99b581398536aae4ac5653df23c3d12d23359c1d;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)