From 3edd33be99ad7ee0b66c1075cc4f45bc62b62161 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Sat, 12 Nov 2016 15:36:22 +0100 Subject: [PATCH] fix(build): Include poll.h instead of sys/poll.h - Include to get rid of musl warnings --- include/utils/inotify.hpp | 2 +- include/utils/socket.hpp | 2 +- src/utils/command.cpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/utils/inotify.hpp b/include/utils/inotify.hpp index ac1cba79..8844e173 100644 --- a/include/utils/inotify.hpp +++ b/include/utils/inotify.hpp @@ -1,7 +1,7 @@ #pragma once #include -#include +#include #include #include "common.hpp" diff --git a/include/utils/socket.hpp b/include/utils/socket.hpp index 45cc9727..ecaac6c6 100644 --- a/include/utils/socket.hpp +++ b/include/utils/socket.hpp @@ -1,6 +1,6 @@ #pragma once -#include +#include #include "common.hpp" diff --git a/src/utils/command.cpp b/src/utils/command.cpp index 03f8a952..fbbdeb0d 100644 --- a/src/utils/command.cpp +++ b/src/utils/command.cpp @@ -1,3 +1,4 @@ +#include #include #include "utils/command.hpp"