mirror of
https://github.com/fluencelabs/musl
synced 2025-06-19 09:51:44 +00:00
add syscall wrappers for inotify
This commit is contained in:
7
src/linux/inotify_init1.c
Normal file
7
src/linux/inotify_init1.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <sys/inotify.h>
|
||||
#include "syscall.h"
|
||||
|
||||
int inotify_init1(int flags)
|
||||
{
|
||||
return syscall1(__NR_inotify_init1, flags);
|
||||
}
|
Reference in New Issue
Block a user