cba597eba113ae8aca037a8d7c5d1633122dedf6
[musl] / src / linux / inotify_rm_watch.c
1 #include <sys/inotify.h>
2 #include "syscall.h"
3
4 int inotify_rm_watch(int fd, uint32_t wd)
5 {
6         return syscall(SYS_inotify_rm_watch, fd, wd);
7 }