depends on settimeofday which needs _GNU_SOURCE feature test
[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 syscall1(__NR_inotify_init1, flags);
7 }