summaryrefslogtreecommitdiff
path: root/libiberty/strchr.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2005-03-28 05:07:08 +0000
committerDJ Delorie <dj@delorie.com>2005-03-28 05:07:08 +0000
commitb6403234482e2ef76e4859459714427df62ad8a0 (patch)
tree1946974d5a3ebcacaeb279f6343c3fc65ccab66e /libiberty/strchr.c
parent625f0fd13f1e5c8e5b885404288eb5862512d658 (diff)
downloadbinutils-redhat-b6403234482e2ef76e4859459714427df62ad8a0.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/strchr.c')
-rw-r--r--libiberty/strchr.c4
1 files changed, 1 insertions, 3 deletions
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 <ansidecl.h>
char *
-strchr (s, c)
- register const char *s;
- int c;
+strchr (register const char *s, int c)
{
do {
if (*s == c)