From 00d7cd66f2aaf894585193c61d506906bd1f285c Mon Sep 17 00:00:00 2001 From: zhangjun <2281979437@qq.com> Date: Sat, 10 Aug 2019 16:32:31 +0800 Subject: [PATCH] fixup two macro definition in include/libc/libc_fcntl.h --- include/libc/libc_fcntl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/libc/libc_fcntl.h b/include/libc/libc_fcntl.h index 1b7c69b1f4..83b9af9b1e 100644 --- a/include/libc/libc_fcntl.h +++ b/include/libc/libc_fcntl.h @@ -20,7 +20,7 @@ #include #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