diff options
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/rpc/auth_unix.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/clnt.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/netdb.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/pmap_clnt.h | 1 | ||||
-rw-r--r-- | sunrpc/rpc/pmap_prot.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/pmap_rmt.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/rpc.h | 7 | ||||
-rw-r--r-- | sunrpc/rpc/rpc_msg.h | 1 | ||||
-rw-r--r-- | sunrpc/rpc/svc.h | 6 | ||||
-rw-r--r-- | sunrpc/rpc/svc_auth.h | 2 | ||||
-rw-r--r-- | sunrpc/rpc/types.h | 6 | ||||
-rw-r--r-- | sunrpc/rpc/xdr.h | 6 |
12 files changed, 21 insertions, 18 deletions
diff --git a/sunrpc/rpc/auth_unix.h b/sunrpc/rpc/auth_unix.h index d006f51f72..ed3b9322cb 100644 --- a/sunrpc/rpc/auth_unix.h +++ b/sunrpc/rpc/auth_unix.h @@ -43,8 +43,8 @@ */ #ifndef _RPC_AUTH_UNIX_H - #define _RPC_AUTH_UNIX_H 1 + #include <features.h> #include <sys/types.h> #include <rpc/types.h> diff --git a/sunrpc/rpc/clnt.h b/sunrpc/rpc/clnt.h index 43a599ad25..0991eea937 100644 --- a/sunrpc/rpc/clnt.h +++ b/sunrpc/rpc/clnt.h @@ -35,8 +35,8 @@ */ #ifndef _RPC_CLNT_H - #define _RPC_CLNT_H 1 + #include <features.h> #include <sys/types.h> #include <rpc/types.h> diff --git a/sunrpc/rpc/netdb.h b/sunrpc/rpc/netdb.h index 914f825ad4..6b820c84d0 100644 --- a/sunrpc/rpc/netdb.h +++ b/sunrpc/rpc/netdb.h @@ -34,8 +34,8 @@ In GNU this file is #include'd by <netdb.h>. */ #ifndef _RPC_NETDB_H - #define _RPC_NETDB_H 1 + #include <features.h> #define __need_size_t diff --git a/sunrpc/rpc/pmap_clnt.h b/sunrpc/rpc/pmap_clnt.h index 45639e7dc4..5d732a1b11 100644 --- a/sunrpc/rpc/pmap_clnt.h +++ b/sunrpc/rpc/pmap_clnt.h @@ -37,6 +37,7 @@ #ifndef _RPC_PMAP_CLNT_H #define _RPC_PMAP_CLNT_H 1 + #include <features.h> #include <rpc/types.h> #include <rpc/xdr.h> diff --git a/sunrpc/rpc/pmap_prot.h b/sunrpc/rpc/pmap_prot.h index 227d1a0619..52185d319a 100644 --- a/sunrpc/rpc/pmap_prot.h +++ b/sunrpc/rpc/pmap_prot.h @@ -36,8 +36,8 @@ */ #ifndef _RPC_PMAP_PROT_H - #define _RPC_PMAP_PROT_H 1 + #include <features.h> #include <rpc/xdr.h> diff --git a/sunrpc/rpc/pmap_rmt.h b/sunrpc/rpc/pmap_rmt.h index 6d32045c8e..bb35ad63e1 100644 --- a/sunrpc/rpc/pmap_rmt.h +++ b/sunrpc/rpc/pmap_rmt.h @@ -36,8 +36,8 @@ */ #ifndef _RPC_PMAP_RMT_H - #define _RPC_PMAP_RMT_H 1 + #include <features.h> #include <sys/types.h> #include <rpc/types.h> diff --git a/sunrpc/rpc/rpc.h b/sunrpc/rpc/rpc.h index f4328ef26f..a966d2e231 100644 --- a/sunrpc/rpc/rpc.h +++ b/sunrpc/rpc/rpc.h @@ -34,8 +34,9 @@ * * Copyright (C) 1984, Sun Microsystems, Inc. */ -#ifndef __RPC_HEADER__ -#define __RPC_HEADER__ + +#ifndef _RPC_RPC_H +#define _RPC_RPC_H 1 #include <rpc/types.h> /* some typedefs */ #include <netinet/in.h> @@ -66,4 +67,4 @@ /* routines for parsing /etc/rpc */ #include <rpc/netdb.h> /* structures and routines to parse /etc/rpc */ -#endif /* ndef __RPC_HEADER__ */ +#endif /* rpc/rpc.h */ diff --git a/sunrpc/rpc/rpc_msg.h b/sunrpc/rpc/rpc_msg.h index 73996169d6..e2908ac9c4 100644 --- a/sunrpc/rpc/rpc_msg.h +++ b/sunrpc/rpc/rpc_msg.h @@ -31,6 +31,7 @@ #ifndef _RPC_MSG_H #define _RPC_MSG_H 1 + #include <sys/cdefs.h> #include <rpc/xdr.h> diff --git a/sunrpc/rpc/svc.h b/sunrpc/rpc/svc.h index f7b05452cc..81366aedb6 100644 --- a/sunrpc/rpc/svc.h +++ b/sunrpc/rpc/svc.h @@ -34,8 +34,8 @@ * Copyright (C) 1984, Sun Microsystems, Inc. */ -#ifndef __SVC_HEADER__ -#define __SVC_HEADER__ +#ifndef _RPC_SVC_H +#define _RPC_SVC_H 1 #include <features.h> #include <rpc/rpc_msg.h> @@ -307,4 +307,4 @@ extern SVCXPRT *svctcp_create __P ((int __sock, u_int __sendsize, __END_DECLS -#endif /* !__SVC_HEADER__ */ +#endif /* rpc/svc.h */ diff --git a/sunrpc/rpc/svc_auth.h b/sunrpc/rpc/svc_auth.h index 320a03a3bd..ad08b71c7b 100644 --- a/sunrpc/rpc/svc_auth.h +++ b/sunrpc/rpc/svc_auth.h @@ -36,8 +36,8 @@ */ #ifndef _RPC_SVC_AUTH_H - #define _RPC_SVC_AUTH_H 1 + #include <features.h> #include <rpc/svc.h> diff --git a/sunrpc/rpc/types.h b/sunrpc/rpc/types.h index fbfda1a3db..54673d598b 100644 --- a/sunrpc/rpc/types.h +++ b/sunrpc/rpc/types.h @@ -32,8 +32,8 @@ /* * Rpc additions to <sys/types.h> */ -#ifndef __TYPES_RPC_HEADER__ -#define __TYPES_RPC_HEADER__ +#ifndef _RPC_TYPES_H +#define _RPC_TYPES_H 1 typedef int bool_t; typedef int enum_t; @@ -71,4 +71,4 @@ typedef int enum_t; #define MAXHOSTNAMELEN 64 #endif -#endif /* ndef __TYPES_RPC_HEADER__ */ +#endif /* rpc/types.h */ diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index e988896196..d0ab0d0cf6 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -35,9 +35,9 @@ * Copyright (C) 1984, Sun Microsystems, Inc. */ -#ifndef __XDR_HEADER__ +#ifndef _RPC_XDR_H +#define _RPC_XDR_H 1 -#define __XDR_HEADER__ #include <features.h> #include <sys/types.h> #include <rpc/types.h> @@ -335,4 +335,4 @@ extern void xdr_free __P ((xdrproc_t __proc, char *__objp)); __END_DECLS -#endif /* !__XDR_HEADER__ */ +#endif /* rpc/xdr.h */ |