inotify_init1.c 125 B

1234567
  1. #include <sys/inotify.h>
  2. #include "syscall.h"
  3. int inotify_init1(int flags)
  4. {
  5. return syscall1(__NR_inotify_init1, flags);
  6. }