xref: /openbsd-src/lib/libc/hidden/netinet/if_ether.h (revision 92a2407899c4cffab8cb1d175a10b79dc3e36246)
1*92a24078Sguenther /*	$OpenBSD: if_ether.h,v 1.1 2015/09/14 11:01:47 guenther Exp $	*/
2*92a24078Sguenther /*
3*92a24078Sguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4*92a24078Sguenther  *
5*92a24078Sguenther  * Permission to use, copy, modify, and distribute this software for any
6*92a24078Sguenther  * purpose with or without fee is hereby granted, provided that the above
7*92a24078Sguenther  * copyright notice and this permission notice appear in all copies.
8*92a24078Sguenther  *
9*92a24078Sguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*92a24078Sguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*92a24078Sguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*92a24078Sguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*92a24078Sguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*92a24078Sguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*92a24078Sguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*92a24078Sguenther  */
17*92a24078Sguenther 
18*92a24078Sguenther #ifndef _LIBC_NETINET_IF_ETHER_H_
19*92a24078Sguenther #define _LIBC_NETINET_IF_ETHER_H_
20*92a24078Sguenther 
21*92a24078Sguenther #include_next <netinet/if_ether.h>
22*92a24078Sguenther 
23*92a24078Sguenther PROTO_DEPRECATED(ether_aton);
24*92a24078Sguenther PROTO_DEPRECATED(ether_hostton);
25*92a24078Sguenther PROTO_NORMAL(ether_line);
26*92a24078Sguenther PROTO_DEPRECATED(ether_ntoa);
27*92a24078Sguenther PROTO_DEPRECATED(ether_ntohost);
28*92a24078Sguenther 
29*92a24078Sguenther #endif /* _LIBC_NETINET_IF_ETHER_H_ */
30