<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Use stdbool.h for compatibility with C23.

--- rpcemu-0.9.5/src/hostfs.c	2024-10-23 20:46:07.000000000 +0100
+++ rpcemu-0.9.5/src/hostfs.c	2025-07-11 00:07:20.654497757 +0100
@@ -21,6 +21,7 @@
 #include &lt;ctype.h&gt;
 #include &lt;errno.h&gt;
 #include &lt;stdarg.h&gt;
+#include &lt;stdbool.h&gt;
 #include &lt;stdio.h&gt;
 #include &lt;stdlib.h&gt;
 #include &lt;string.h&gt;
@@ -51,11 +52,6 @@
 # define mkdir(name, mode) _mkdir(name)
 #endif
 
-typedef int bool;
-
-#define true  ((bool) 1)
-#define false ((bool) 0)
-
 /** Registration states of HostFS module with backend code */
 typedef enum {
   HOSTFS_STATE_UNREGISTERED,	/**&lt; Module not yet registered */
</pre></body></html>