mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 23:51:34 +00:00
8 lines
105 B
C
8 lines
105 B
C
#include <sys/inotify.h>
|
|
#include "syscall.h"
|
|
|
|
int inotify_init()
|
|
{
|
|
return syscall(SYS_inotify_init);
|
|
}
|