summaryrefslogtreecommitdiff
path: root/src/linux/inotify_init1.c
blob: 6472a7b2be5ee796ebfe2d38af10652390d4d5e7 (plain) (blame)
1
2
3
4
5
6
7
#include <sys/inotify.h>
#include "syscall.h"

int inotify_init1(int flags)
{
	return syscall(SYS_inotify_init1, flags);
}