mirror of
https://github.com/fluencelabs/musl
synced 2025-06-15 16:01:41 +00:00
8 lines
125 B
C
8 lines
125 B
C
#include <sys/inotify.h>
|
|
#include "syscall.h"
|
|
|
|
int inotify_init1(int flags)
|
|
{
|
|
return syscall1(__NR_inotify_init1, flags);
|
|
}
|