diff --git a/distrib/sets/lists/comp/mi b/distrib/sets/lists/comp/mi index d4ad1c22fcc9..94824e0738c2 100644 --- a/distrib/sets/lists/comp/mi +++ b/distrib/sets/lists/comp/mi @@ -1,4 +1,4 @@ -# $NetBSD: mi,v 1.190 2000/02/03 16:20:53 kleink Exp $ +# $NetBSD: mi,v 1.191 2000/02/09 12:23:56 itojun Exp $ ./sys comp-sysutil-root ./usr/bin/ar comp-util-bin ./usr/bin/as comp-util-bin @@ -1759,6 +1759,7 @@ ./usr/share/man/cat3/getgrouplist.0 comp-c-catman ./usr/share/man/cat3/gethostbyaddr.0 comp-c-catman ./usr/share/man/cat3/gethostbyname.0 comp-c-catman +./usr/share/man/cat3/gethostbyname2.0 comp-c-catman ./usr/share/man/cat3/gethostent.0 comp-c-catman ./usr/share/man/cat3/gethostid.0 comp-c-catman ./usr/share/man/cat3/gethostname.0 comp-c-catman @@ -3240,6 +3241,7 @@ ./usr/share/man/man3/getgrouplist.3 comp-c-man ./usr/share/man/man3/gethostbyaddr.3 comp-c-man ./usr/share/man/man3/gethostbyname.3 comp-c-man +./usr/share/man/man3/gethostbyname2.3 comp-c-man ./usr/share/man/man3/gethostent.3 comp-c-man ./usr/share/man/man3/gethostid.3 comp-c-man ./usr/share/man/man3/gethostname.3 comp-c-man diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index 1c98245d3add..0fc1610a96e6 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.48 2000/01/27 05:33:06 itojun Exp $ +# $NetBSD: Makefile.inc,v 1.49 2000/02/09 12:23:55 itojun Exp $ # @(#)Makefile.inc 8.2 (Berkeley) 9/5/93 # net sources @@ -47,7 +47,8 @@ MLINKS+=ethers.3 ether_aton.3 ethers.3 ether_hostton.3 ethers.3 ether_line.3 \ ethers.3 ether_ntoa.3 ethers.3 ether_ntohost.3 MLINKS+=gethostbyname.3 endhostent.3 gethostbyname.3 gethostbyaddr.3 \ gethostbyname.3 sethostent.3 gethostbyname.3 gethostent.3 \ - gethostbyname.3 herror.3 gethostbyname.3 hstrerror.3 + gethostbyname.3 herror.3 gethostbyname.3 hstrerror.3 \ + gethostbyname.3 gethostbyname2.3 MLINKS+=getnetent.3 endnetent.3 getnetent.3 getnetbyaddr.3 \ getnetent.3 getnetbyname.3 getnetent.3 setnetent.3 MLINKS+=getprotoent.3 endprotoent.3 getprotoent.3 getprotobyname.3 \