summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog30
-rw-r--r--include/netdb.h4
-rw-r--r--include/rpc/auth.h1
-rw-r--r--include/rpc/rpc_msg.h2
-rw-r--r--include/string.h10
-rw-r--r--include/wchar.h4
-rw-r--r--inet/getnameinfo.c1
-rw-r--r--string/envz.c2
-rw-r--r--sunrpc/key_call.c1
-rw-r--r--sunrpc/rpc_prot.c1
-rw-r--r--sysdeps/generic/getaddrinfo.c6
-rw-r--r--sysdeps/posix/getaddrinfo.c2
-rw-r--r--wcsmbs/mbrtowc.c1
-rw-r--r--wcsmbs/wmemchr.c5
-rw-r--r--wcsmbs/wmemset.c3
15 files changed, 62 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index ffbb3f4a53..4e93f75309 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,31 @@
2002-08-05 Roland McGrath <roland@redhat.com>
+ * 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.
+
* include/stdlib.h: Use libc_hidden_proto for wctomb.
* stdlib/wctomb.c: Add libc_hidden_def.
@@ -10,10 +36,6 @@
* inet/ruserpass.c: Likewise.
* inet/getnetgrent_r.c: Likewise.
- * include/rpc/auth.h: Use libc_hidden_proto for getnetname,
- netname2user, host2netname, user2netname.
- * sunrpc/netname.c: Add libc_hidden_def.
-
* include/rpc/svc.h: Use libc_hidden_proto for svc_register,
svc_unregister, remove *_internal decls. Use libc_hidden_proto
for svcerr_auth, svcerr_noprog, svcerr_progvers.
diff --git a/include/netdb.h b/include/netdb.h
index a824404cb3..9b1a1abb9b 100644
--- a/include/netdb.h
+++ b/include/netdb.h
@@ -28,6 +28,10 @@ libc_hidden_proto (rexec_af)
libc_hidden_proto (rresvport_af)
libc_hidden_proto (ruserok_af)
+libc_hidden_proto (getaddrinfo)
+libc_hidden_proto (getnameinfo)
+libc_hidden_proto (freeaddrinfo)
+
/* Document internal interfaces. */
extern int __gethostent_r (struct hostent *__restrict __result_buf,
char *__restrict __buf, size_t __buflen,
diff --git a/include/rpc/auth.h b/include/rpc/auth.h
index 9cef7c6fa9..a5e290b898 100644
--- a/include/rpc/auth.h
+++ b/include/rpc/auth.h
@@ -5,6 +5,7 @@ libc_hidden_proto (getnetname)
libc_hidden_proto (netname2user)
libc_hidden_proto (host2netname)
libc_hidden_proto (user2netname)
+libc_hidden_proto (key_gendes)
/* Now define the internal interfaces. */
struct key_netstarg;
diff --git a/include/rpc/rpc_msg.h b/include/rpc/rpc_msg.h
index ab2e775430..3e518c93d4 100644
--- a/include/rpc/rpc_msg.h
+++ b/include/rpc/rpc_msg.h
@@ -1,6 +1,8 @@
#ifndef _RPC_MSG_H
#include <sunrpc/rpc/rpc_msg.h>
+libc_hidden_proto (_seterr_reply)
+
/* Now define the internal interfaces. */
extern bool_t xdr_rejected_reply (XDR *xdrs, struct rejected_reply *rr);
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
diff --git a/include/wchar.h b/include/wchar.h
index 0a5c948610..9094ce12a8 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -19,6 +19,7 @@ libc_hidden_proto (putwc_unlocked)
libc_hidden_proto (vswscanf)
+libc_hidden_proto (mbrtowc)
libc_hidden_proto (wcrtomb)
libc_hidden_proto (wcscmp)
libc_hidden_proto (wcsftime)
@@ -27,6 +28,9 @@ libc_hidden_proto (wcschr)
libc_hidden_proto (wcscoll)
libc_hidden_proto (wcspbrk)
+libc_hidden_proto (wmemchr)
+libc_hidden_proto (wmemset)
+
/* Now define the internal interfaces. */
extern int __wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2)
__attribute_pure__;
diff --git a/inet/getnameinfo.c b/inet/getnameinfo.c
index 9f1a5c4f45..063bec4c79 100644
--- a/inet/getnameinfo.c
+++ b/inet/getnameinfo.c
@@ -421,3 +421,4 @@ getnameinfo (const struct sockaddr *sa, socklen_t addrlen, char *host,
errno = serrno;
return 0;
}
+libc_hidden_def (getnameinfo)
diff --git a/string/envz.c b/string/envz.c
index e1532ca948..5c5804c12b 100644
--- a/string/envz.c
+++ b/string/envz.c
@@ -163,7 +163,7 @@ envz_strip (char **envz, size_t *envz_len)
{
size_t entry_len = strlen (entry) + 1;
left -= entry_len;
- if (! index (entry, SEP))
+ if (! strchr (entry, SEP))
/* Null entry. */
memmove (entry + entry_len, entry, left);
else
diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c
index e41e3fc380..0b09a5a66e 100644
--- a/sunrpc/key_call.c
+++ b/sunrpc/key_call.c
@@ -233,6 +233,7 @@ key_gendes (des_block *key)
return 0;
}
+libc_hidden_def (key_gendes)
int
key_setnet (struct key_netstarg *arg)
diff --git a/sunrpc/rpc_prot.c b/sunrpc/rpc_prot.c
index 59ec5058b6..69b0b6cd9d 100644
--- a/sunrpc/rpc_prot.c
+++ b/sunrpc/rpc_prot.c
@@ -283,3 +283,4 @@ _seterr_reply (struct rpc_msg *msg,
break;
}
}
+libc_hidden_def (_seterr_reply)
diff --git a/sysdeps/generic/getaddrinfo.c b/sysdeps/generic/getaddrinfo.c
index fba5fd8db7..548c0b863e 100644
--- a/sysdeps/generic/getaddrinfo.c
+++ b/sysdeps/generic/getaddrinfo.c
@@ -1,5 +1,5 @@
/* Stub version of getaddrinfo function.
- Copyright (C) 1996 Free Software Foundation, Inc.
+ Copyright (C) 1996, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -28,7 +28,7 @@ getaddrinfo (const char *name, const char *service, const struct addrinfo *req,
return EAI_SYSTEM;
}
stub_warning (getaddrinfo)
-
+libc_hidden_def (getaddrinfo)
void
freeaddrinfo (struct addrinfo *ai)
@@ -36,4 +36,6 @@ freeaddrinfo (struct addrinfo *ai)
/* Nothing. */
}
stub_warning (freeaddrinfo)
+libc_hidden_def (freeaddrinfo)
+
#include <stub-tag.h>
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
index cdd1d887d8..5e09a9f765 100644
--- a/sysdeps/posix/getaddrinfo.c
+++ b/sysdeps/posix/getaddrinfo.c
@@ -789,6 +789,7 @@ getaddrinfo (const char *name, const char *service,
return last_i ? -(last_i & GAIH_EAI) : EAI_NONAME;
}
+libc_hidden_def (getaddrinfo)
void
freeaddrinfo (struct addrinfo *ai)
@@ -802,3 +803,4 @@ freeaddrinfo (struct addrinfo *ai)
free (p);
}
}
+libc_hidden_def (freeaddrinfo)
diff --git a/wcsmbs/mbrtowc.c b/wcsmbs/mbrtowc.c
index 521fdd753f..c25ba51d4b 100644
--- a/wcsmbs/mbrtowc.c
+++ b/wcsmbs/mbrtowc.c
@@ -106,3 +106,4 @@ __mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)
}
libc_hidden_def (__mbrtowc)
weak_alias (__mbrtowc, mbrtowc)
+libc_hidden_weak (mbrtowc)
diff --git a/wcsmbs/wmemchr.c b/wcsmbs/wmemchr.c
index 5cf18346a0..da93e965b2 100644
--- a/wcsmbs/wmemchr.c
+++ b/wcsmbs/wmemchr.c
@@ -1,6 +1,6 @@
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1996,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
- Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
+ Contributed by Ulrich Drepper <drepper@gnu.org>, 1996.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -60,3 +60,4 @@ wmemchr (s, c, n)
return NULL;
}
+libc_hidden_def (wmemchr)
diff --git a/wcsmbs/wmemset.c b/wcsmbs/wmemset.c
index 0565173635..ae69f1fd0e 100644
--- a/wcsmbs/wmemset.c
+++ b/wcsmbs/wmemset.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996,97,99,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.org>, 1996.
@@ -53,3 +53,4 @@ wmemset (s, c, n)
return s;
}
+libc_hidden_def (wmemset)