fcntl.h 225 B

12345678
  1. #include <fcntl.h>
  2. static const mode_t kO_RDONLY = O_RDONLY;
  3. static const mode_t kO_WRONLY = O_WRONLY;
  4. static const mode_t kO_RDWR = O_RDWR;
  5. static const mode_t kO_CREAT = O_CREAT;
  6. static const mode_t kO_EXCL = O_EXCL;