1 /* 2 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 * 5 * Copyright (c) 1983 Regents of the University of California. 6 * All rights reserved. The Berkeley software License Agreement 7 * specifies the terms and conditions for redistribution. 8 */ 9 10 #pragma ident "%Z%%M% %I% %E% SMI" 11 12 /* 13 * External definitions for 14 * functions in inet(3N) 15 */ 16 17 #ifndef _arpa_inet_h 18 #define _arpa_inet_h 19 20 unsigned long inet_addr(); 21 char *inet_ntoa(); 22 /* 23 * With the introduction of CIDR the following 24 * routines are now considered to be Obsolete 25 */ 26 struct in_addr inet_makeaddr(); 27 unsigned long inet_network(); 28 29 #endif /* !_arpa_inet_h */ 30