<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Include &lt;unistd.h&gt;.

Fixes:

error: use of undeclared identifier 'close'

Change 6 of 6 from
https://sourceforge.net/p/gelide/code/ci/b8da37d825b9548ba6548f96ce8efb84cf068001/
--- src/utils/process.cpp
+++ src/utils/process.cpp
@@ -23,7 +23,7 @@
 #include &lt;sys/types.h&gt;
 #include &lt;sys/wait.h&gt;
 #include &lt;glibmm.h&gt;
-
+#include &lt;unistd.h&gt;
 
 CProcess::CProcess(void): m_proc_id(-1){
 }
</pre></body></html>