mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 10:01:38 +00:00
8 lines
107 B
C
8 lines
107 B
C
|
#include <sys/inotify.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int inotify_init()
|
||
|
{
|
||
|
return syscall0(__NR_inotify_init);
|
||
|
}
|