diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-09-22 14:56:23 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-09-22 14:56:23 +0000 |
commit | d47e35f45a9df698ec628fec91ad4c9a82ec76cf (patch) | |
tree | bd5f287efa88b8327922c536bf37236a819ed34a /sys | |
parent | b8674d3802061e3d73d2be0f94f6c8618080b1b1 (diff) |
Add prototypes for ipx_addr() and ipx_ntoa(); mickey@ OK'd
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netipx/ipx.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/netipx/ipx.h b/sys/netipx/ipx.h index 01bd8a0a9e8..2b7827c9404 100644 --- a/sys/netipx/ipx.h +++ b/sys/netipx/ipx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx.h,v 1.12 2000/01/17 00:34:00 fgsch Exp $ */ +/* $OpenBSD: ipx.h,v 1.13 2000/09/22 14:56:22 millert Exp $ */ /*- * @@ -246,4 +246,11 @@ void ipx_printhost __P((struct ipx_addr *addr)); #endif /* _KERNEL */ +#include <sys/cdefs.h> + +__BEGIN_DECLS +struct ipx_addr ipx_addr __P((const char *)); +char *ipx_ntoa __P((struct ipx_addr)); +__END_DECLS + #endif /* !_NETIPX_IPX_H_ */ |