fcntl.h 383 B

1234567891011121314151617181920
  1. #ifndef __FCNTL_H
  2. #define __FCNTL_H
  3. #include <features.h>
  4. #include <sys/types.h>
  5. #include <linux/fcntl.h>
  6. #ifndef FNDELAY
  7. #define FNDELAY O_NDELAY
  8. #endif
  9. __BEGIN_DECLS
  10. extern int creat __P ((__const char * __filename, mode_t __mode));
  11. extern int fcntl __P ((int __fildes,int __cmd, ...));
  12. extern int open __P ((__const char * __filename, int __flags, ...));
  13. __END_DECLS
  14. #endif