summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-06 06:09:28 +0000
committerRoland McGrath <roland@gnu.org>2002-08-06 06:09:28 +0000
commit9b0b40d35e239d33fbb66ebe88b7249f9a8f006e (patch)
tree99757a9381e77c9b6c37b72822230e833a8f9a02 /include/string.h
parente2ec9b4dc1e1a39b59c0a7539ad1ddc66582e8be (diff)
* include/rpc/auth.h: Use libc_hidden_proto for getnetname,
netname2user, host2netname, user2netname, key_gendes. * sunrpc/netname.c: Add libc_hidden_def. * sunrpc/key_call.c: Likewise. * include/netdb.h: Use libc_hidden_proto for getaddrinfo, getnameinfo, freeaddrinfo. * inet/getnameinfo.c: Add libc_hidden_def. * sysdeps/generic/getaddrinfo.c: Likewise. * sysdeps/posix/getaddrinfo.c: Likewise. * include/wchar.h: Use libc_hidden_proto for wmemchr, wmemset. * wcsmbs/wmemchr.c: Add libc_hidden_def. * wcsmbs/wmemset.c: Add libc_hidden_def. * include/string.h: Move libc_hidden_proto's inside #ifndef _STRING_H. (index, rindex): Define as macros for strchr, strrchr. * string/envz.c (envz_strip): index -> strchr * include/rpc/rpc_msg.h: Use libc_hidden_proto for _seterr_reply. * sunrpc/rpc_prot.c: Add libc_hidden_def. * include/wchar.h: Use libc_hidden_proto for mbrtowc. * wcsmbs/mbrtowc.c: Add libc_hidden_weak.
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h
index 64c59b00fb..b4ccb1b57f 100644
--- a/include/string.h
+++ b/include/string.h
@@ -59,7 +59,6 @@ extern char *__strerror_r (int __errnum, char *__buf, size_t __buflen);
__new[__len] = '\0'; \
(char *) memcpy (__new, __old, __len); \
}))
-#endif
libc_hidden_proto (__mempcpy)
libc_hidden_proto (__stpcpy)
@@ -72,3 +71,12 @@ libc_hidden_proto (__strdup)
libc_hidden_proto (__strndup)
libc_hidden_proto (__strerror_r)
libc_hidden_proto (__strverscmp)
+
+# ifndef index
+# define index(s, c) (strchr ((s), (c)))
+# endif
+# ifndef rindex
+# define rindex(s, c) (strrchr ((s), (c)))
+# endif
+
+#endif