blob: cba597eba113ae8aca037a8d7c5d1633122dedf6 [file] [log] [blame]
#include <sys/inotify.h>
#include "syscall.h"
int inotify_rm_watch(int fd, uint32_t wd)
{
return syscall(SYS_inotify_rm_watch, fd, wd);
}