summaryrefslogtreecommitdiff
path: root/src/linux/inotify_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/inotify_init.c')
-rw-r--r--src/linux/inotify_init.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/inotify_init.c b/src/linux/inotify_init.c
new file mode 100644
index 00000000..d378460d
--- /dev/null
+++ b/src/linux/inotify_init.c
@@ -0,0 +1,7 @@
+#include <sys/inotify.h>
+#include "syscall.h"
+
+int inotify_init()
+{
+ return syscall0(__NR_inotify_init);
+}