summaryrefslogtreecommitdiff
path: root/src/linux/inotify_rm_watch.c
blob: 0772d71931fb2409cd2451f309a7320ef6dc1a8b (plain) (blame)
1
2
3
4
5
6
7
#include <sys/inotify.h>
#include "syscall.h"

int inotify_rm_watch(int fd, uint32_t wd)
{
	return syscall2(__NR_inotify_rm_watch, fd, wd);
}