12345678910111213141516171819202122232425262728 |
- #ifndef _SYS_INOTIFY_H
- # error "Never use <bits/inotify.h> directly; include <sys/inotify.h> instead."
- #endif
- enum
- {
- IN_CLOEXEC = 0x400000,
- #define IN_CLOEXEC IN_CLOEXEC
- IN_NONBLOCK = 0x004000
- #define IN_NONBLOCK IN_NONBLOCK
- };
|