From: Ted Lemon Date: Sat, 29 Mar 1997 10:38:08 +0000 (+0000) Subject: Add prototype for inet_aton X-Git-Tag: DHCP-970329~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b60cc68734c939860d353e22386afc7ba8ad1a5;p=thirdparty%2Fdhcp.git Add prototype for inet_aton --- diff --git a/includes/dhcpd.h b/includes/dhcpd.h index 817f03004..d7495a8ea 100644 --- a/includes/dhcpd.h +++ b/includes/dhcpd.h @@ -864,3 +864,8 @@ void icmp_echoreply PROTO ((struct protocol *)); /* dns.c */ void dns_startup PROTO ((void)); int ns_inaddr_lookup PROTO ((struct sockaddr_in *, u_int16_t, struct iaddr)); + +/* inet_addr.c */ +#ifdef NEED_INET_ATON +int inet_aton PROTO ((char *, struct in_addr *)); +#endif