diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-22 15:40:07 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-22 15:40:07 +0000 |
commit | 5200f4be667a336fb2b90bdad8b6dab5d0979aa6 (patch) | |
tree | 2e8901f302dad25f0bd647f68a1d6c9423986c96 /lib/libc/rpc/pmap_getmaps.c | |
parent | 3fa0d9942f4943ada80c76279fcfd99262c878c6 (diff) | |
download | FreeBSD-src-5200f4be667a336fb2b90bdad8b6dab5d0979aa6.zip FreeBSD-src-5200f4be667a336fb2b90bdad8b6dab5d0979aa6.tar.gz |
Use ANSI C prototypes. Eliminates -Wold-style-definition warnings.
Diffstat (limited to 'lib/libc/rpc/pmap_getmaps.c')
-rw-r--r-- | lib/libc/rpc/pmap_getmaps.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/rpc/pmap_getmaps.c b/lib/libc/rpc/pmap_getmaps.c index 34e254a..1049005 100644 --- a/lib/libc/rpc/pmap_getmaps.c +++ b/lib/libc/rpc/pmap_getmaps.c @@ -70,8 +70,7 @@ __FBSDID("$FreeBSD$"); * Calls the pmap service remotely to do get the maps. */ struct pmaplist * -pmap_getmaps(address) - struct sockaddr_in *address; +pmap_getmaps(struct sockaddr_in *address) { struct pmaplist *head = NULL; int sock = -1; |