xref: /openbsd-src/lib/libc/hidden/arpa/inet.h (revision b2d13c95892d0a18f20a23fac7e63fa27b549fb5)
1*b2d13c95Sguenther /*	$OpenBSD: inet.h,v 1.1 2015/09/13 21:36:08 guenther Exp $	*/
2*b2d13c95Sguenther /*
3*b2d13c95Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4*b2d13c95Sguenther  *
5*b2d13c95Sguenther  * Permission to use, copy, modify, and distribute this software for any
6*b2d13c95Sguenther  * purpose with or without fee is hereby granted, provided that the above
7*b2d13c95Sguenther  * copyright notice and this permission notice appear in all copies.
8*b2d13c95Sguenther  *
9*b2d13c95Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*b2d13c95Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*b2d13c95Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*b2d13c95Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*b2d13c95Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*b2d13c95Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*b2d13c95Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*b2d13c95Sguenther  */
17*b2d13c95Sguenther 
18*b2d13c95Sguenther #ifndef _LIBC_INET_H_
19*b2d13c95Sguenther #define	_LIBC_INET_H_
20*b2d13c95Sguenther 
21*b2d13c95Sguenther #include_next <arpa/inet.h>
22*b2d13c95Sguenther 
23*b2d13c95Sguenther PROTO_DEPRECATED(inet_addr);
24*b2d13c95Sguenther PROTO_NORMAL(inet_aton);
25*b2d13c95Sguenther PROTO_DEPRECATED(inet_lnaof);
26*b2d13c95Sguenther PROTO_DEPRECATED(inet_makeaddr);
27*b2d13c95Sguenther PROTO_DEPRECATED(inet_net_ntop);
28*b2d13c95Sguenther PROTO_DEPRECATED(inet_net_pton);
29*b2d13c95Sguenther PROTO_DEPRECATED(inet_neta);
30*b2d13c95Sguenther PROTO_DEPRECATED(inet_netof);
31*b2d13c95Sguenther PROTO_NORMAL(inet_network);
32*b2d13c95Sguenther PROTO_DEPRECATED(inet_ntoa);
33*b2d13c95Sguenther PROTO_NORMAL(inet_ntop);
34*b2d13c95Sguenther PROTO_NORMAL(inet_pton);
35*b2d13c95Sguenther 
36*b2d13c95Sguenther #endif /* !_LIBC_INET_H_ */
37