mirror of
https://github.com/hyprwm/hyprutils.git
synced 2024-11-17 04:55:59 +01:00
os: add missing header for BSDs after fd4be8b9ca
(#16)
src/os/Process.cpp:105:9: error: use of undeclared identifier 'sigemptyset' 105 | sigemptyset(&set); | ^ src/os/Process.cpp:106:21: error: use of undeclared identifier 'SIG_SETMASK' 106 | sigprocmask(SIG_SETMASK, &set, NULL); | ^
This commit is contained in:
parent
60d3dece30
commit
d504d45114
1 changed files with 1 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
#include <hyprutils/os/Process.hpp>
|
#include <hyprutils/os/Process.hpp>
|
||||||
using namespace Hyprutils::OS;
|
using namespace Hyprutils::OS;
|
||||||
|
|
||||||
|
#include <csignal>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
Loading…
Reference in a new issue