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