[libc] Add O_BINARY definition

This commit is contained in:
Bernard Xiong 2018-02-09 09:30:32 +08:00
parent 84a44e58dd
commit 484b667d7d
1 changed files with 9 additions and 0 deletions

View File

@ -20,6 +20,7 @@
* Change Logs: * Change Logs:
* Date Author Notes * Date Author Notes
* 2018-02-07 Bernard Add O_DIRECTORY definition in NEWLIB mode. * 2018-02-07 Bernard Add O_DIRECTORY definition in NEWLIB mode.
* 2018-02-09 Bernard Add O_BINARY definition
*/ */
#ifndef LIBC_FCNTL_H__ #ifndef LIBC_FCNTL_H__
@ -47,6 +48,14 @@
#define O_DIRECTORY 0x200000 #define O_DIRECTORY 0x200000
#endif #endif
#ifndef O_BINARY
#ifdef _O_BINARY
#define O_BINARY _O_BINARY
#else
#define O_BINARY 0
#endif
#endif
#else #else
#define O_RDONLY 00 #define O_RDONLY 00
#define O_WRONLY 01 #define O_WRONLY 01