mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
23bab906b8
* 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.
27 lines
922 B
C
27 lines
922 B
C
#ifndef _NETINET_ETHER_H
|
|
#include <inet/netinet/ether.h>
|
|
|
|
struct etherent;
|
|
|
|
#define DECLARE_NSS_PROTOTYPES(service) \
|
|
extern enum nss_status _nss_ ## service ## _setetherent (void); \
|
|
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)
|
|
DECLARE_NSS_PROTOTYPES (nis)
|
|
DECLARE_NSS_PROTOTYPES (nisplus)
|
|
|
|
#undef DECLARE_NSS_PROTOTYPES
|
|
|
|
#endif
|