From cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 20 Nov 2008 22:11:44 +0000 Subject: Last portion of libc_hidden_proto removal. Appears to build fine (several .configs tried) --- libc/inet/getservice.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libc/inet/getservice.c') diff --git a/libc/inet/getservice.c b/libc/inet/getservice.c index d427adff9..904f0b79c 100644 --- a/libc/inet/getservice.c +++ b/libc/inet/getservice.c @@ -68,8 +68,8 @@ /* Experimentally off - libc_hidden_proto(strpbrk) */ /* libc_hidden_proto(fopen) */ /* libc_hidden_proto(fclose) */ -libc_hidden_proto(atoi) -libc_hidden_proto(rewind) +/* libc_hidden_proto(atoi) */ +/* libc_hidden_proto(rewind) */ /* libc_hidden_proto(fgets) */ /* libc_hidden_proto(abort) */ @@ -96,7 +96,7 @@ static void __initbuf(void) } } -libc_hidden_proto(setservent) +/* libc_hidden_proto(setservent) */ void setservent(int f) { __UCLIBC_MUTEX_LOCK(mylock); @@ -109,7 +109,7 @@ void setservent(int f) } libc_hidden_def(setservent) -libc_hidden_proto(endservent) +/* libc_hidden_proto(endservent) */ void endservent(void) { __UCLIBC_MUTEX_LOCK(mylock); @@ -122,7 +122,7 @@ void endservent(void) } libc_hidden_def(endservent) -libc_hidden_proto(getservent_r) +/* libc_hidden_proto(getservent_r) */ int getservent_r(struct servent * result_buf, char * buf, size_t buflen, struct servent ** result) @@ -213,7 +213,7 @@ struct servent * getservent(void) return result; } -libc_hidden_proto(getservbyname_r) +/* libc_hidden_proto(getservbyname_r) */ int getservbyname_r(const char *name, const char *proto, struct servent * result_buf, char * buf, size_t buflen, struct servent ** result) @@ -251,7 +251,7 @@ struct servent *getservbyname(const char *name, const char *proto) } -libc_hidden_proto(getservbyport_r) +/* libc_hidden_proto(getservbyport_r) */ int getservbyport_r(int port, const char *proto, struct servent * result_buf, char * buf, size_t buflen, struct servent ** result) @@ -273,7 +273,7 @@ int getservbyport_r(int port, const char *proto, } libc_hidden_def(getservbyport_r) -libc_hidden_proto(getservbyport) +/* libc_hidden_proto(getservbyport) */ struct servent * getservbyport(int port, const char *proto) { struct servent *result; -- cgit v1.2.3