summaryrefslogtreecommitdiff
path: root/libinotifytools/src/inotifytools/inotify.h.in
blob: 0a40d5042fe66b36212c45fdb8accb2def8bae48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _INOTIFYTOOLS_INOTIFY_H
#define _INOTIFYTOOLS_INOTIFY_H 1

/* this is defined to 1 if <sys/inotify.h> works. */
#undef SYS_INOTIFY_H_EXISTS_AND_WORKS


#ifdef SYS_INOTIFY_H_EXISTS_AND_WORKS
#include <sys/inotify.h>
#else
#include "inotify-nosys.h"
#endif // SYS_INOTIFY_H_EXISTS_AND_WORKS


#endif