diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
commit | f1d70dad5381352b3cad04b5ee0dd0efe2627683 (patch) | |
tree | 09ee58dd09a6fd5f18131b98cc337a001e90fcb2 /nss | |
parent | 7bd642f580ef5698bd5b1777a5ba7af2f58c5d8c (diff) | |
download | glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.gz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.xz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.zip |
Remove lots of inline keywords.
Diffstat (limited to 'nss')
-rw-r--r-- | nss/getent.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nss/getent.c b/nss/getent.c index 64e642f1da..0689859d24 100644 --- a/nss/getent.c +++ b/nss/getent.c @@ -92,7 +92,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ } /* This is for aliases */ -static inline void +static void print_aliases (struct aliasent *alias) { unsigned int i = 0; @@ -181,7 +181,7 @@ ethers_keys (int number, char *key[]) } /* This is for group */ -static inline void +static void print_group (struct group *grp) { unsigned int i = 0; @@ -600,7 +600,7 @@ networks_keys (int number, char *key[]) } /* Now is all for passwd */ -static inline void +static void print_passwd (struct passwd *pwd) { printf ("%s:%s:%lu:%lu:%s:%s:%s\n", @@ -651,7 +651,7 @@ passwd_keys (int number, char *key[]) } /* This is for protocols */ -static inline void +static void print_protocols (struct protoent *proto) { unsigned int i; @@ -701,7 +701,7 @@ protocols_keys (int number, char *key[]) } /* Now is all for rpc */ -static inline void +static void print_rpc (struct rpcent *rpc) { int i; |