blob: de2cd8ceef1e4dd46f0eb6935ec1b1aea2343777 (
plain)
1
2
3
4
5
6
7
8
|
#include <stdint.h>
#include <sys/inotify.h>
#include <syscall.h>
int inotify_add_watch(int fildes, const char *name, uint32_t mask)
{
return syscall(inotify_add_watch, fildes, name, mask);
}
|