From bd783b901f92f2e33bfb396d1325c0a4ef3a962c Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Thu, 22 Jun 2006 11:45:59 +0000 Subject: [PATCH] Added prototype for inet_aton. --- include/arpa/inet.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/arpa/inet.h b/include/arpa/inet.h index 80e019fb3..4ae82935e 100644 --- a/include/arpa/inet.h +++ b/include/arpa/inet.h @@ -30,4 +30,9 @@ _PROTOTYPE( char *inet_ntoa, (struct in_addr _in) ); _PROTOTYPE( uint32_t ntohl, (uint32_t _netval) ); _PROTOTYPE( uint16_t ntohs, (uint16_t _netval) ); +#ifdef _MINIX +/* Additional functions */ +_PROTOTYPE( int inet_aton, (const char *_cp, struct in_addr *_pin) ); +#endif + #endif /* _ARPA__INET_H */ -- 2.44.0