diff options
author | Theo Paris <[email protected]> | 2024-10-04 01:41:27 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-04 09:41:27 +0100 |
commit | 1ed925b69c2854a3f345cbeb7dca29a6286ca926 (patch) | |
tree | 059751562e4b28b94e58f4091121606499dcc4fe /src/helpers | |
parent | aed529f695bc62f5fa45dc94c545275ebb49bc48 (diff) | |
download | Hyprland-1ed925b69c2854a3f345cbeb7dca29a6286ca926.tar.gz Hyprland-1ed925b69c2854a3f345cbeb7dca29a6286ca926.zip |
internal: fix missing include directive (#7984)
This should fix building with clang.
Diffstat (limited to 'src/helpers')
-rw-r--r-- | src/helpers/SdDaemon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/helpers/SdDaemon.cpp b/src/helpers/SdDaemon.cpp index 48c23e6b..80944794 100644 --- a/src/helpers/SdDaemon.cpp +++ b/src/helpers/SdDaemon.cpp @@ -8,6 +8,7 @@ #include <sys/socket.h> #include <sys/un.h> #include <string.h> +#include <stdlib.h> #include <cstring> namespace Systemd { |