about summary refs log tree commit diff
path: root/include/wchar.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/wchar.h
parente2ec9b4dc1e1a39b59c0a7539ad1ddc66582e8be (diff)
downloadglibc-9b0b40d35e239d33fbb66ebe88b7249f9a8f006e.tar.gz
glibc-9b0b40d35e239d33fbb66ebe88b7249f9a8f006e.tar.xz
glibc-9b0b40d35e239d33fbb66ebe88b7249f9a8f006e.zip
* 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/wchar.h')
-rw-r--r--include/wchar.h4
1 files changed, 4 insertions, 0 deletions
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__;