global cleanup to use the new syscall interface
[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 }