diff options
author | ed <ed@FreeBSD.org> | 2012-01-05 10:32:53 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2012-01-05 10:32:53 +0000 |
commit | 064404aac96133ca2cd46ae6156b2369418f8c0a (patch) | |
tree | efeb000c789a1ea2797b930535c0d37dfa848a9c /lib/libc/string/strchr.c | |
parent | 3bad498373ab9cd361987063fc05a1a8255840b4 (diff) | |
download | FreeBSD-src-064404aac96133ca2cd46ae6156b2369418f8c0a.zip FreeBSD-src-064404aac96133ca2cd46ae6156b2369418f8c0a.tar.gz |
Change index() and rindex() to a weak alias.
This allows people to still write statically linked applications that
call strchr() or strrchr() and have a local variable or function called
index.
Discussed with: bde@
Diffstat (limited to 'lib/libc/string/strchr.c')
-rw-r--r-- | lib/libc/string/strchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strchr.c b/lib/libc/string/strchr.c index 481cb20..1245f13 100644 --- a/lib/libc/string/strchr.c +++ b/lib/libc/string/strchr.c @@ -51,4 +51,4 @@ strchr(const char *p, int ch) /* NOTREACHED */ } -__strong_reference(strchr, index); +__weak_reference(strchr, index); |