math: remove long double version of bessel functions from math.h
[musl] / include / sys / inotify.h
index 59644ef..fe25136 100644 (file)
@@ -6,15 +6,16 @@ extern "C" {
 #endif
 
 #include <stdint.h>
+#include <fcntl.h>
 
 struct inotify_event {
-       int we;
+       int wd;
        uint32_t mask, cookie, len;
        char name[];
 };
 
-#define IN_CLOEXEC 020000000
-#define IN_NONBLOCK 04000
+#define IN_CLOEXEC O_CLOEXEC
+#define IN_NONBLOCK O_NONBLOCK
 
 #define IN_ACCESS        0x00000001
 #define IN_MODIFY        0x00000002