diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1996-06-13 20:45:05 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1996-06-13 20:45:05 +0000 |
| commit | ffd1512db68091791db3d716f0c1d5a439d83622 (patch) | |
| tree | a635ddac80f364e7231486e0658e824d279d1cfc /include | |
| parent | 117e1bd9efab2eabb3d406b30fdc56c0d0fa2c75 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/arpa/inet.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h index 014277cb4c15..027f4430aeb5 100644 --- a/include/arpa/inet.h +++ b/include/arpa/inet.h @@ -31,16 +31,21 @@ * SUCH DAMAGE. * * @(#)inet.h 8.1 (Berkeley) 6/2/93 + * $Id$ */ #ifndef _ARPA_INET_H_ #define _ARPA_INET_H_ -/* External definitions for functions in inet(3) */ +/* External definitions for functions in inet(3), addr2ascii(3) */ #include <sys/cdefs.h> +struct in_addr; + __BEGIN_DECLS +int ascii2addr __P((int, const char *, void *)); +char *addr2ascii __P((int, const void *, int, char *)); unsigned long inet_addr __P((const char *)); int inet_aton __P((const char *, struct in_addr *)); unsigned long inet_lnaof __P((struct in_addr)); |
