6472a7b2be5ee796ebfe2d38af10652390d4d5e7
[musl] / src / linux / inotify_init1.c
1 #include <sys/inotify.h>
2 #include "syscall.h"
3
4 int inotify_init1(int flags)
5 {
6         return syscall(SYS_inotify_init1, flags);
7 }