inotify_rm_watch.c 140 B

1234567
  1. #include <sys/inotify.h>
  2. #include "syscall.h"
  3. int inotify_rm_watch(int fd, uint32_t wd)
  4. {
  5. return syscall(SYS_inotify_rm_watch, fd, wd);
  6. }