summaryrefslogtreecommitdiff
path: root/include/rpc
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-19 09:50:44 +0000
committerAndreas Jaeger <aj@suse.de>2000-12-19 09:50:44 +0000
commit23bab906b8b67c54fd2ab47f57a2a38c7d967cc8 (patch)
tree8ea3eacf0fb739f05dcd99d5d6b1332ab1ceda3e /include/rpc
parent244cd53119c636398de61f20fff4aa74dc6d45aa (diff)
* include/netinet/ether.h (DECLARE_NSS_PROTOTYPES): New.
* nis/nis_intern.h: Add prototype for __do_niscall3. * nis/nss_nis/nis-rpc.c (_nss_nis_setrpcent): Fix declaration to match prototype. * include/netdb.h (DECLARE_NSS_PROTOTYPES): Reformat. * include/rpc/netdb.h (DECLARE_NSS_PROTOTYPES): New. * include/aliases.h (DECLARE_NSS_PROTOTYPES): New.
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/netdb.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/rpc/netdb.h b/include/rpc/netdb.h
index 54a4b70052..aec359ac98 100644
--- a/include/rpc/netdb.h
+++ b/include/rpc/netdb.h
@@ -21,4 +21,24 @@ extern int __getrpcent_r (struct rpcent *__result_buf, char *__buffer,
extern int __old_getrpcent_r (struct rpcent *__result_buf, char *__buffer,
size_t __buflen, struct rpcent **__result);
+#define DECLARE_NSS_PROTOTYPES(service) \
+extern enum nss_status _nss_ ## service ## _setrpcent (int); \
+extern enum nss_status _nss_ ## service ## _endrpcent (void); \
+extern enum nss_status _nss_ ## service ## _getrpcent_r \
+ (struct rpcent *rpc, char *buffer, size_t buflen, \
+ int *errnop); \
+extern enum nss_status _nss_ ## service ## _getrpcbyname_r \
+ (const char *name, struct rpcent *rpc, \
+ char *buffer, size_t buflen, int *errnop); \
+extern enum nss_status _nss_ ## service ## _getrpcbynumber_r \
+ (int number, struct rpcent *rpc, \
+ char *buffer, size_t buflen, int *errnop);
+
+
+DECLARE_NSS_PROTOTYPES (files)
+DECLARE_NSS_PROTOTYPES (nis)
+DECLARE_NSS_PROTOTYPES (nisplus)
+
+#undef DECLARE_NSS_PROTOTYPES
+
#endif