aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libc/include/sys/epoll.h2
-rw-r--r--libc/include/sys/inotify.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/sys/epoll.h b/libc/include/sys/epoll.h
index 625f4c20e..1e207d856 100644
--- a/libc/include/sys/epoll.h
+++ b/libc/include/sys/epoll.h
@@ -25,10 +25,12 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
+
#ifndef _SYS_EPOLL_H_
#define _SYS_EPOLL_H_
#include <sys/cdefs.h>
+#include <sys/types.h>
#include <asm/fcntl.h> /* For O_CLOEXEC. */
__BEGIN_DECLS
diff --git a/libc/include/sys/inotify.h b/libc/include/sys/inotify.h
index a88cdee48..dcdd29a0e 100644
--- a/libc/include/sys/inotify.h
+++ b/libc/include/sys/inotify.h
@@ -25,10 +25,12 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
+
#ifndef _SYS_INOTIFY_H_
#define _SYS_INOTIFY_H_
#include <sys/cdefs.h>
+#include <sys/types.h>
#include <stdint.h>
#include <linux/inotify.h>
#include <asm/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */