sendfile.h 190 B

12345678910111213141516
  1. #ifndef _SYS_INOTIFY_H
  2. #define _SYS_INOTIFY_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <unistd.h>
  7. ssize_t sendfile(int, int, off_t *, size_t);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif