fcntl.h (411B)
1 #pragma once 2 3 #include_next <sys/fcntl.h> 4 5 #undef O_RDONLY 6 #define O_RDONLY SCE_O_RDONLY 7 #undef O_WRONLY 8 #define O_WRONLY SCE_O_WRONLY 9 #undef O_RDWR 10 #define O_RDWR SCE_O_RDWR 11 #undef O_APPEND 12 #define O_APPEND SCE_O_APPEND 13 #undef O_CREAT 14 #define O_CREAT SCE_O_CREAT 15 #undef O_TRUNC 16 #define O_TRUNC SCE_O_TRUNC 17 #undef O_EXCL 18 #define O_EXCL SCE_O_EXCL 19 #undef O_SYNC 20 #undef O_NONBLOCK 21 #define O_NONBLOCK SCE_O_NBLOCK