diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-26 14:14:05 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-26 14:14:05 +0000 |
commit | f3b4c74b53903b32d1b852b381ae22b140b7b05b (patch) | |
tree | b6adc3094d207688bce66a702523dc3597ff244e /libc/inet/rpc/auth_none.c | |
parent | 83b2918ebe75fe7c3ee54c3a33bd8cc10234db8c (diff) |
100 JUMP relocs less (remaining 431) by hiding internally used ones
Diffstat (limited to 'libc/inet/rpc/auth_none.c')
-rw-r--r-- | libc/inet/rpc/auth_none.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/inet/rpc/auth_none.c b/libc/inet/rpc/auth_none.c index b2683a651..e7b7aba53 100644 --- a/libc/inet/rpc/auth_none.c +++ b/libc/inet/rpc/auth_none.c @@ -69,8 +69,8 @@ struct authnone_private_s { static struct authnone_private_s *authnone_private; #endif -AUTH * -authnone_create (void) +AUTH attribute_hidden * +__authnone_create (void) { struct authnone_private_s *ap; XDR xdr_stream; @@ -98,6 +98,7 @@ authnone_create (void) } return (&ap->no_client); } +strong_alias(__authnone_create,authnone_create) /*ARGSUSED */ static bool_t |