10Sstevel@tonic-gate /* 2*5577Ssangeeta * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 3*5577Ssangeeta * Use is subject to license terms. 4*5577Ssangeeta * 50Sstevel@tonic-gate * Copyright (c) 1983 Regents of the University of California. 60Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 70Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 80Sstevel@tonic-gate */ 90Sstevel@tonic-gate 10*5577Ssangeeta #pragma ident "%Z%%M% %I% %E% SMI" 11*5577Ssangeeta 120Sstevel@tonic-gate /* 130Sstevel@tonic-gate * External definitions for 140Sstevel@tonic-gate * functions in inet(3N) 150Sstevel@tonic-gate */ 160Sstevel@tonic-gate 17*5577Ssangeeta #ifndef _arpa_inet_h 18*5577Ssangeeta #define _arpa_inet_h 190Sstevel@tonic-gate 200Sstevel@tonic-gate unsigned long inet_addr(); 210Sstevel@tonic-gate char *inet_ntoa(); 22*5577Ssangeeta /* 23*5577Ssangeeta * With the introduction of CIDR the following 24*5577Ssangeeta * routines are now considered to be Obsolete 25*5577Ssangeeta */ 260Sstevel@tonic-gate struct in_addr inet_makeaddr(); 270Sstevel@tonic-gate unsigned long inet_network(); 280Sstevel@tonic-gate 29*5577Ssangeeta #endif /* !_arpa_inet_h */ 30