summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/libc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-10-15 07:59:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-10-15 07:59:00 +0000
commit807337d281ffd5125123c97267329cfc501bf9db (patch)
tree82cd7d90ed2a8ac58ea66f0b45fb52885c7ae713 /cpukit/libnetworking/libc
parentRemove (diff)
downloadrtems-807337d281ffd5125123c97267329cfc501bf9db.tar.bz2
Adjust to POSIX. Minor updates from FreeBSD.
Diffstat (limited to 'cpukit/libnetworking/libc')
-rw-r--r--cpukit/libnetworking/libc/gethostnamadr.c2
-rw-r--r--cpukit/libnetworking/libc/getnetnamadr.c9
2 files changed, 4 insertions, 7 deletions
diff --git a/cpukit/libnetworking/libc/gethostnamadr.c b/cpukit/libnetworking/libc/gethostnamadr.c
index ab48634ae8..19c05b31ba 100644
--- a/cpukit/libnetworking/libc/gethostnamadr.c
+++ b/cpukit/libnetworking/libc/gethostnamadr.c
@@ -159,7 +159,7 @@ gethostbyname2(const char *name, int type)
}
struct hostent *
-gethostbyaddr(const char *addr, int len, int type)
+gethostbyaddr(const void *addr, socklen_t len, int type)
{
struct hostent *hp = 0;
int nserv = 0;
diff --git a/cpukit/libnetworking/libc/getnetnamadr.c b/cpukit/libnetworking/libc/getnetnamadr.c
index 3676697f91..e99bce565e 100644
--- a/cpukit/libnetworking/libc/getnetnamadr.c
+++ b/cpukit/libnetworking/libc/getnetnamadr.c
@@ -145,9 +145,7 @@ getnetbyname(const char *name)
}
struct netent *
-getnetbyaddr(addr, af)
- u_long addr;
- int af;
+getnetbyaddr(uint32_t addr, int af)
{
struct netent *hp = 0;
int nserv = 0;
@@ -175,15 +173,14 @@ getnetbyaddr(addr, af)
}
void
-setnetent(stayopen)
- int stayopen;
+setnetent(int stayopen)
{
_setnethtent(stayopen);
_setnetdnsent(stayopen);
}
void
-endnetent()
+endnetent(void)
{
_endnethtent();
_endnetdnsent();