summaryrefslogtreecommitdiff
path: root/lib/libc/sys/inotify/inotify_rm_watch.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-15 18:44:07 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-15 18:44:07 +0100
commit01cf24ec66c663e3f40be1d5c703aa9666effc85 (patch)
tree9e5bed524b013ee2609d7e5f1282eaa96eec404c /lib/libc/sys/inotify/inotify_rm_watch.c
parent6f6c027a90fba09f06ea0937b57cfd349661620e (diff)
Add inotify and reorganize eventfd and io_uring syscalls
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);
+}