summaryrefslogtreecommitdiff
path: root/libiberty/index.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2005-04-02 20:20:01 +0000
committerDJ Delorie <dj@redhat.com>2005-04-02 20:20:01 +0000
commitaa55ccb12061123ca56c2b61402899b73276d2df (patch)
treee3c337f9254966a09d397982ff402c3c22c05c21 /libiberty/index.c
parent09d4efe17b398dc08e4ec0869a8f9df2dc271f99 (diff)
merge from gcc
Diffstat (limited to 'libiberty/index.c')
-rw-r--r--libiberty/index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/index.c b/libiberty/index.c
index c37edca024..acd0a45fc0 100644
--- a/libiberty/index.c
+++ b/libiberty/index.c
@@ -15,7 +15,7 @@ deprecated in new programs in favor of @code{strchr}.
extern char * strchr(const char *, int);
char *
-index (char *s, int c)
+index (const char *s, int c)
{
return strchr (s, c);
}