summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/inotify/inotifytest.cpp
blob: 8378a7e1ace0e986e13fb462bb099846c57d9156 (plain)
1
2
3
4
5
6
7
8
9
#include <sys/inotify.h>

int main()
{
    inotify_init();
    inotify_add_watch(0, "foobar", IN_ACCESS);
    inotify_rm_watch(0, 1);
    return 0;
}