xref: /haiku/headers/posix/sys/ioctl.h (revision b671e9bbdbd10268a042b4f4cc4317ccd03d105e)
1 /*
2  * Copyright 2006, 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 #include <termios.h>
9 
10 /* These only work on sockets for now */
11 #define FIONBIO 	0xbe000000
12 #define FIONREAD	0xbe000001
13 
14 #endif	/* _SYS_IOCTL_H */
15