d378460d7fdf384a0f3e1876a37db885d3427ce6
[musl] / src / linux / inotify_init.c
1 #include <sys/inotify.h>
2 #include "syscall.h"
3
4 int inotify_init()
5 {
6         return syscall0(__NR_inotify_init);
7 }