summaryrefslogtreecommitdiff
path: root/lib/libc/sys/inotify/inotify_rm_watch.c
blob: e2729cd080e85022fb5c09ae34dfd2ae8baf4c06 (plain)
1
2
3
4
5
6
7
#include <sys/inotify.h>
#include <syscall.h>

int inotify_rm_watch(int fildes, int wd)
{
	return syscall(inotify_rm_watch, fildes, wd);
}