diff options
Diffstat (limited to 'src/linux/inotify_init1.c')
-rw-r--r-- | src/linux/inotify_init1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/inotify_init1.c b/src/linux/inotify_init1.c new file mode 100644 index 00000000..5fad0946 --- /dev/null +++ b/src/linux/inotify_init1.c @@ -0,0 +1,7 @@ +#include <sys/inotify.h> +#include "syscall.h" + +int inotify_init1(int flags) +{ + return syscall1(__NR_inotify_init1, flags); +} |