mirror of
https://github.com/fluencelabs/musl
synced 2025-06-17 00:41:45 +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);
|
||
|
}
|