75f207d793ff2a8bb8ae3eaae3f5b2b600fb5000
[musl] / src / linux / inotify_add_watch.c
1 #include <sys/inotify.h>
2 #include "syscall.h"
3
4 int inotify_add_watch(int fd, const char *pathname, uint32_t mask)
5 {
6         return syscall(SYS_inotify_add_watch, fd, pathname, mask);
7 }