diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:58:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:58:42 +0000 |
commit | 6d72960706e071e222ab772a9dfc100552473172 (patch) | |
tree | f1a5cfbf939892d013e225e79e9fcf7f5dc8f384 /libc | |
parent | 4cb63ab6d1034aa3449154396fcdf35fce1200f6 (diff) |
declare static
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inet/rpc/rcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/rpc/rcmd.c b/libc/inet/rpc/rcmd.c index c7a5be0db..c76cf1ca7 100644 --- a/libc/inet/rpc/rcmd.c +++ b/libc/inet/rpc/rcmd.c @@ -310,8 +310,8 @@ int attribute_hidden __rresvport(int *alport) } strong_alias(__rresvport,rresvport) -int __check_rhosts_file = 1; -char *__rcmd_errstr; +static int __check_rhosts_file = 1; +static char *__rcmd_errstr; int ruserok(rhost, superuser, ruser, luser) const char *rhost, *ruser, *luser; |