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 #endif /* _SYS_IOCTL_H */ 16