xref: /haiku/headers/posix/sys/ioctl.h (revision 99d1318ec02694fc520a0dc38ae38565db7e8c3c)
1 /*
2  * Copyright 2006-2012 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYS_IOCTL_H
6 #define _SYS_IOCTL_H
7 
8 
9 #include <termios.h>
10 
11 /* These only work on sockets for now */
12 #define FIONBIO 	0xbe000000
13 #define FIONREAD	0xbe000001
14 
15 #define FIOSEEKDATA	0xbe000002
16 #define FIOSEEKHOLE	0xbe000003
17 
18 #endif	/* _SYS_IOCTL_H */
19