You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
313 B
C
13 lines
313 B
C
4 years ago
|
#ifndef _SYS_FCNTL_H_
|
||
|
#define _SYS_FCNTL_H_
|
||
|
|
||
|
#include <sys/_default_fcntl.h>
|
||
|
|
||
|
/* We want to support O_BINARY for the open syscall.
|
||
|
For example, the Demon debug monitor has a separate
|
||
|
flag value for "rb" vs "r". */
|
||
|
#define _FBINARY 0x10000
|
||
|
#define O_BINARY _FBINARY
|
||
|
|
||
|
#endif /* _SYS_FCNTL_H_ */
|