浏览代码

Merge pull request #2940 from zhangjun1996/master

	fixup two macro definition in include/libc/libc_fcntl.h
Bernard Xiong 5 年之前
父节点
当前提交
41d8ba370b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/libc/libc_fcntl.h

+ 2 - 2
include/libc/libc_fcntl.h

@@ -20,7 +20,7 @@
 #include <fcntl.h>
 
 #ifndef O_NONBLOCK
-#define O_NONBLOCK   0x4000
+#define O_NONBLOCK   04000
 #endif
 
 #if defined(_WIN32)
@@ -35,7 +35,7 @@
 #endif
 
 #ifndef O_DIRECTORY
-#define O_DIRECTORY 0x200000
+#define O_DIRECTORY 0200000
 #endif
 
 #ifndef O_BINARY