mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 22:52:59 -04:00
15 lines
332 B
Diff
15 lines
332 B
Diff
Includes headers needed for getpid()
|
|
Closes: https://bugs.gentoo.org/975955
|
|
|
|
--- a/src/core/debugger.cpp
|
|
+++ b/src/core/debugger.cpp
|
|
@@ -12,6 +12,8 @@
|
|
#elif defined(__linux__)
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
+#include <sys/types.h>
|
|
+#include <unistd.h>
|
|
#elif defined(__APPLE__)
|
|
#include <errno.h>
|
|
#include <signal.h>
|