fix(build): Include poll.h instead of sys/poll.h

- Include <poll.h> to get rid of musl warnings
This commit is contained in:
Michael Carlberg 2016-11-12 15:36:22 +01:00
parent fe1d0579ec
commit 3edd33be99
3 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#pragma once
#include <sys/inotify.h>
#include <sys/poll.h>
#include <poll.h>
#include <cstdio>
#include "common.hpp"

View File

@ -1,6 +1,6 @@
#pragma once
#include <sys/poll.h>
#include <poll.h>
#include "common.hpp"

View File

@ -1,3 +1,4 @@
#include <sys/wait.h>
#include <csignal>
#include "utils/command.hpp"