fcntl.h 221 B

123456789101112131415
  1. #ifndef _BITS_FCNTL_H
  2. #define _BITS_FCNTL_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int open(const char* filename, int flags, ...);
  7. int fcntl(int fildes, int cmd, ...);
  8. #ifdef __cplusplus
  9. } // extern "C"
  10. #endif
  11. #endif