1/*
2 * Copyright 2009, Colin G��nther, coling@gmx.de.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5#ifndef _FBSD_COMPAT_SYS_SOCKET_H_
6#define _FBSD_COMPAT_SYS_SOCKET_H_
7
8
9#include <posix/sys/socket.h>
10
11#include <sys/cdefs.h>
12#include <sys/_types.h>
13
14
15// TODO Should be incorporated into Haikus socket.h with a number below AF_MAX
16#define AF_IEEE80211 	(AF_MAX + 1) 	/* IEEE 802.11 protocol */
17
18#endif /* _FBSD_COMPAT_SYS_SOCKET_H_ */
19