From e29ca1929f3aae5288c03be40e67061e245a90ea Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Mon, 9 Jan 2023 12:10:50 +0100 Subject: Fix missing symbol --- process.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/process.h b/process.h index a47dd6c..b13a54c 100644 --- a/process.h +++ b/process.h @@ -2,6 +2,10 @@ #include +#define EXPORT __attribute__((visibility("default"))) + namespace Reichwein::Process { - bool is_running(pid_t pid); + +EXPORT bool is_running(pid_t pid); + } // namespace -- cgit v1.2.3