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