From 01cf24ec66c663e3f40be1d5c703aa9666effc85 Mon Sep 17 00:00:00 2001 From: Kacper Date: Mon, 15 Dec 2025 18:44:07 +0100 Subject: Add inotify and reorganize eventfd and io_uring syscalls --- lib/libc/sys/inotify/inotify_rm_watch.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/libc/sys/inotify/inotify_rm_watch.c (limited to 'lib/libc/sys/inotify/inotify_rm_watch.c') 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 +#include + +int inotify_rm_watch(int fildes, int wd) +{ + return syscall(inotify_rm_watch, fildes, wd); +} -- cgit v1.2.3