diff options
author | DJ Delorie <dj@redhat.com> | 2005-04-02 20:20:01 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2005-04-02 20:20:01 +0000 |
commit | aa55ccb12061123ca56c2b61402899b73276d2df (patch) | |
tree | e3c337f9254966a09d397982ff402c3c22c05c21 /libiberty/index.c | |
parent | 09d4efe17b398dc08e4ec0869a8f9df2dc271f99 (diff) | |
download | binutils-aa55ccb12061123ca56c2b61402899b73276d2df.tar.gz binutils-aa55ccb12061123ca56c2b61402899b73276d2df.tar.bz2 binutils-aa55ccb12061123ca56c2b61402899b73276d2df.zip |
merge from gcc
Diffstat (limited to 'libiberty/index.c')
-rw-r--r-- | libiberty/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/index.c b/libiberty/index.c index c37edca024e..acd0a45fc02 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); } |