diff options
Diffstat (limited to 'include/rpc/netdb.h')
-rw-r--r-- | include/rpc/netdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rpc/netdb.h b/include/rpc/netdb.h index e9a6565ad..764b8cf1a 100644 --- a/include/rpc/netdb.h +++ b/include/rpc/netdb.h @@ -54,7 +54,7 @@ extern void setrpcent (int __stayopen) __THROW; libc_hidden_proto(setrpcent) extern void endrpcent (void) __THROW; libc_hidden_proto(endrpcent) -extern struct rpcent *getrpcbyname (__const char *__name) __THROW; +extern struct rpcent *getrpcbyname (const char *__name) __THROW; libc_hidden_proto(getrpcbyname) extern struct rpcent *getrpcbynumber (int __number) __THROW; libc_hidden_proto(getrpcbynumber) @@ -62,7 +62,7 @@ extern struct rpcent *getrpcent (void) __THROW; libc_hidden_proto(getrpcent) #if defined __USE_MISC && defined __UCLIBC_HAS_REENTRANT_RPC__ -extern int getrpcbyname_r (__const char *__name, struct rpcent *__result_buf, +extern int getrpcbyname_r (const char *__name, struct rpcent *__result_buf, char *__buffer, size_t __buflen, struct rpcent **__result) __THROW; |