<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix:

fatal error: 'malloc.h' file not found

malloc.h is Linux-specific so it should not be used in portable software.
POSIX says malloc is defined in stdlib.h which is already included.
--- dict/src/lib/rsa.cpp.orig
+++ dict/src/lib/rsa.cpp
@@ -3,7 +3,6 @@
 #include &lt;stdlib.h&gt;   
 #include &lt;time.h&gt;  
 #include &lt;math.h&gt;
-#include &lt;malloc.h&gt;
 
 #include "rsa.h"
 
</pre></body></html>