source: trunk/config.tests/unix/inotify/inotifytest.cpp@ 203

Last change on this file since 203 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 150 bytes
Line 
1#include <sys/inotify.h>
2
3int main()
4{
5 inotify_init();
6 inotify_add_watch(0, "foobar", IN_ACCESS);
7 inotify_rm_watch(0, 1);
8 return 0;
9}
Note: See TracBrowser for help on using the repository browser.