fix(build): Include poll.h instead of sys/poll.h
- Include <poll.h> to get rid of musl warnings
This commit is contained in:
parent
fe1d0579ec
commit
3edd33be99
3 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <sys/inotify.h>
|
||||
#include <sys/poll.h>
|
||||
#include <poll.h>
|
||||
#include <cstdio>
|
||||
|
||||
#include "common.hpp"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <sys/poll.h>
|
||||
#include <poll.h>
|
||||
|
||||
#include "common.hpp"
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include <sys/wait.h>
|
||||
#include <csignal>
|
||||
|
||||
#include "utils/command.hpp"
|
||||
|
|
Loading…
Reference in a new issue