[libc] fix the fcntl issue in newlib

This commit is contained in:
Bernard Xiong
2018-02-07 19:55:35 +08:00
parent 64a20c0f15
commit 4e41b0573b
4 changed files with 52 additions and 30 deletions
@@ -1,16 +0,0 @@
#ifndef __RTT_FCNTL_H__
#define __RTT_FCNTL_H__
/* Operation flags */
#define O_RDONLY 0x0000000
#define O_WRONLY 0x0000001
#define O_RDWR 0x0000002
#define O_ACCMODE 0x0000003
#define O_CREAT 0x0000100
#define O_EXCL 0x0000200
#define O_TRUNC 0x0001000
#define O_APPEND 0x0002000
#define O_DIRECTORY 0x0200000
#define O_BINARY 0x0008000
#endif