fcntl.h 284 B

12345678910111213141516171819
  1. #ifndef _BITS_FCNTL_H
  2. #define _BITS_FCNTL_H
  3. #if (defined(__redox__))
  4. #define O_NOFOLLOW 0x80000000
  5. #endif
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. int open(const char* filename, int flags, ...);
  10. int fcntl(int fildes, int cmd, ...);
  11. #ifdef __cplusplus
  12. } // extern "C"
  13. #endif
  14. #endif