1 #ifndef _SYS_FCNTL_H_
2 #define _SYS_FCNTL_H_
3 
4 #include <sys/_default_fcntl.h>
5 
6 /* We want to support O_BINARY for the open syscall.
7    For example, the Demon debug monitor has a separate
8    flag value for "rb" vs "r". */
9 #define _FBINARY        0x10000
10 #define O_BINARY        _FBINARY
11 
12 #endif /* _SYS_FCNTL_H_ */
13