8 lines
123 B
C
8 lines
123 B
C
#include <sys/inotify.h>
|
|
#include "syscall.h"
|
|
|
|
int inotify_init1(int flags)
|
|
{
|
|
return syscall(SYS_inotify_init1, flags);
|
|
}
|