11#define O_SEARCH O_EXEC
14#define O_READABLE(_flags) ((_flags & O_ACCMODE) != O_WRONLY)
15#define O_WRITABLE(_flags) ((_flags & O_ACCMODE) != O_RDONLY)
17#define S_IRWU (S_IRUSR | S_IWUSR)
18#define S_IRWG (S_IRGRP | S_IWGRP)
19#define S_IRWO (S_IROTH | S_IWOTH)