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 /* These only work on sockets for now */
9 #define FIONBIO 0xbe000000
10 #define FIONREAD 0xbe000001
11
12 #endif /* _SYS_IOCTL_H */
13