inotify_init.c 105 B

1234567
  1. #include <sys/inotify.h>
  2. #include "syscall.h"
  3. int inotify_init()
  4. {
  5. return syscall(SYS_inotify_init);
  6. }