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_IOCCOM_H_
6#define _FBSD_COMPAT_SYS_IOCCOM_H_
7
8
9#define	_IOW(g,n,t)		SIOCEND + n
10#define	_IOWR(g,n,t)	SIOCEND + n
11
12#endif /* _FBSD_COMPAT_SYS_IOCCOM_H_ */
13