fcntl.h 313 B

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