<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix:
error: implicitly declaring library function 'strlen' with type 'unsigned long (const char *)' [-Werror,-Wimplicit-function-declaration]
error: implicitly declaring library function 'strcpy' with type 'char *(char *, const char *)' [-Werror,-Wimplicit-function-declaration]
--- xmalloc.c.orig	2022-01-10 14:26:37.000000000 -0600
+++ xmalloc.c	2022-01-10 14:31:00.000000000 -0600
@@ -25,6 +25,7 @@
 # define VOID char
 #endif
 
+#include &lt;string.h&gt;
 #include &lt;sys/types.h&gt;
 
 #if STDC_HEADERS
</pre></body></html>