about summary refs log tree commit diff
path: root/include/netinet
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-06 04:30:03 +0000
committerRoland McGrath <roland@gnu.org>2002-08-06 04:30:03 +0000
commita585ba226b0adfc310a49bb5045c3a3096da3da3 (patch)
tree114a2d1d0eabce485ff51e665f8fc90f047f2ffb /include/netinet
parent45085ac9b99d555acb17994040dcb78f9b97df93 (diff)
downloadglibc-a585ba226b0adfc310a49bb5045c3a3096da3da3.tar.gz
glibc-a585ba226b0adfc310a49bb5045c3a3096da3da3.tar.xz
glibc-a585ba226b0adfc310a49bb5045c3a3096da3da3.zip
* sysdeps/posix/system.c (do_system): New function, guts broken out of
	__libc_system.
	(__libc_system): Call it, putting just the line == NULL test here.

	* include/libc-symbols.h (__hidden_proto): Add extern keywords so
	variables work right.

	* elf/dl-open.c (dl_open_worker): Use _ macro instead of gettext.
	* elf/dl-close.c (_dl_close): Likewise.

	* include/netinet/in.h: Use libc_hidden_proto for bindresvport,
	in6addr_any, in6addr_loopback.  Remove decls for
	bindresvport_internal, in6addr_any_internal, in6addr_loopback_internal.
	* sunrpc/svc_udp.c (svcudp_bufcreate): Nix INTUSE for bindresvport.
	* sunrpc/svc_tcp.c (svctcp_create): Likewise.
	* sunrpc/clnt_udp.c (clntudp_bufcreate): Likewise.
	* sunrpc/bindrsvprt.c: Change INTDEF to libc_hidden_def.
	* inet/in6_addr.c: Change INTVARDEF to libc_hidden_def.
	* sysdeps/posix/getaddrinfo.c (gaih_inet): Nix INTUSE for
	in6addr_loopback.
	* inet/gethstbyad_r.c (PREPROCESS): Nix INTUSE for in6addr_any.

	* include/netinet/ether.h: Use libc_hidden_proto for ether_ntoa_r,
	ether_aton_r.
	* inet/ether_aton_r.c: Add libc_hidden_def.
	* inet/ether_ntoa_r.c: Likewise.

	* include/rpc/auth.h: Use libc_hidden_proto for getnetname,
	netname2user, host2netname.
	* sunrpc/netname.c: Add libc_hidden_def.

	* include/netdb.h: Use libc_hidden_proto for innetgr, rcmd_af,
	rexec_af, rresvport_af, ruserok_af.
	* inet/rcmd.c: Add libc_hidden_def.
	* inet/getnetgrent_r.c: Likewise.
Diffstat (limited to 'include/netinet')
-rw-r--r--include/netinet/ether.h27
-rw-r--r--include/netinet/in.h11
2 files changed, 21 insertions, 17 deletions
diff --git a/include/netinet/ether.h b/include/netinet/ether.h
index 98947aaec7..bf016547b0 100644
--- a/include/netinet/ether.h
+++ b/include/netinet/ether.h
@@ -1,6 +1,9 @@
 #ifndef _NETINET_ETHER_H
 #include <inet/netinet/ether.h>
 
+libc_hidden_proto (ether_aton_r)
+libc_hidden_proto (ether_ntoa_r)
+
 /* Because the `ethers' lookup does not fit so well in the scheme we
    define a dummy struct here which helps us to use the available
    functions.  */
@@ -15,18 +18,18 @@ extern int _nss_files_parse_etherent (char *line, struct etherent *result,
 				      struct parser_data *data,
 				      size_t datalen, int *errnop);
 
-#define DECLARE_NSS_PROTOTYPES(service)						\
-extern enum nss_status _nss_ ## service ## _setetherent (int __stayopen);	\
-extern enum nss_status _nss_ ## service ## _endetherent (void);			\
-extern enum nss_status _nss_ ## service ## _getetherent_r			\
-                       (struct etherent *result, char *buffer,			\
-			size_t buflen, int *errnop);				\
-extern enum nss_status _nss_ ## service ## _gethostton_r			\
-                       (const char *name, struct etherent *eth,			\
-			char *buffer, size_t buflen, int *errnop);		\
-extern enum nss_status _nss_ ## service ## _getntohost_r			\
-                       (const struct ether_addr *addr,				\
-			struct etherent *eth,					\
+#define DECLARE_NSS_PROTOTYPES(service)					      \
+extern enum nss_status _nss_ ## service ## _setetherent (int __stayopen);     \
+extern enum nss_status _nss_ ## service ## _endetherent (void);		      \
+extern enum nss_status _nss_ ## service ## _getetherent_r		      \
+                       (struct etherent *result, char *buffer,		      \
+			size_t buflen, int *errnop);			      \
+extern enum nss_status _nss_ ## service ## _gethostton_r		      \
+                       (const char *name, struct etherent *eth,		      \
+			char *buffer, size_t buflen, int *errnop);	      \
+extern enum nss_status _nss_ ## service ## _getntohost_r		      \
+                       (const struct ether_addr *addr,			      \
+			struct etherent *eth,				      \
 			char *buffer, size_t buflen, int *errnop);
 
 DECLARE_NSS_PROTOTYPES (files)
diff --git a/include/netinet/in.h b/include/netinet/in.h
index 356cc96a0f..876f1a4369 100644
--- a/include/netinet/in.h
+++ b/include/netinet/in.h
@@ -1,8 +1,9 @@
+#ifndef _NETINET_IN_H
+
 #include <inet/netinet/in.h>
 
-extern const struct in6_addr in6addr_any_internal attribute_hidden;
-extern const struct in6_addr in6addr_loopback_internal attribute_hidden;
+libc_hidden_proto (bindresvport)
+libc_hidden_proto (in6addr_loopback)
+libc_hidden_proto (in6addr_any)
 
-/* Bind socket to a privileged IP port.  */
-extern int bindresvport_internal (int __sockfd,
-				  struct sockaddr_in *__sock_in) attribute_hidden;
+#endif