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_init.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/libc/sys/inotify/inotify_init.c (limited to 'lib/libc/sys/inotify/inotify_init.c') 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 +#include + +int inotify_init(void) +{ + return syscall(inotify_init); +} -- cgit v1.2.3