diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-02-10 18:11:59 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-02-10 18:11:59 +0000 |
commit | d16263dd8fad1ba24c9e1074afc921dab663c3f3 (patch) | |
tree | c25a6894fed74cd6674a2daee0036c89e118454d /lib/libc/net | |
parent | a4825853e8dfd09946efe0c68c2b703ac5c6b0dd (diff) |
add MLINKS for 64-bit functions in byteorder(3);
passes miod's "make sure it doesn't break libc or libpthread" test;
Diffstat (limited to 'lib/libc/net')
-rw-r--r-- | lib/libc/net/Makefile.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index 805ae5d2247..81348fa0ffc 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.31 2001/08/06 14:40:47 jakob Exp $ +# $OpenBSD: Makefile.inc,v 1.32 2004/02/10 18:11:58 jmc Exp $ # net sources .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/net ${LIBCSRCDIR}/net @@ -37,9 +37,11 @@ MAN+= byteorder.3 ethers.3 getaddrinfo.3 gethostbyname.3 getifaddrs.3 \ MLINKS+=byteorder.3 htonl.3 byteorder.3 htons.3 byteorder.3 ntohl.3 \ byteorder.3 ntohs.3 byteorder.3 htobe16.3 byteorder.3 htobe32.3 \ - byteorder.3 betoh16.3 byteorder.3 betoh32.3 byteorder.3 htole16.3 \ - byteorder.3 htole32.3 byteorder.3 letoh16.3 byteorder.3 letoh32.3 \ - byteorder.3 swap16.3 byteorder.3 swap32.3 + byteorder.3 htobe64.3 byteorder.3 betoh16.3 byteorder.3 betoh32.3 \ + byteorder.3 betoh64.3 byteorder.3 htole16.3 byteorder.3 htole32.3 \ + byteorder.3 htole64.3 byteorder.3 letoh16.3 byteorder.3 letoh32.3 \ + byteorder.3 letoh64.3 byteorder.3 swap16.3 byteorder.3 swap32.3 \ + byteorder.3 swap64.3 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 ethers.3 ether_addr.3 MLINKS+= getaddrinfo.3 freeaddrinfo.3 getaddrinfo.3 gai_strerror.3 |