1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2021-09-02 Meco Man First version 9 */ 10 11 #ifndef __FCNTL_H__ 12 #define __FCNTL_H__ 13 14 #include <sys/_default_fcntl.h> 15 16 #ifndef O_EXEC 17 #define O_EXEC 0x400000 18 #endif 19 20 #ifndef O_TMPFILE 21 #define O_TMPFILE 0x800000 22 #endif 23 24 #ifndef O_BINARY 25 #define O_BINARY 0x10000 26 #endif 27 28 #ifndef O_NOFOLLOW 29 #define O_NOFOLLOW 0x100000 30 #endif 31 32 #ifndef O_DIRECTORY 33 #define O_DIRECTORY 0x200000 34 #endif 35 36 #endif 37