<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Description: Add missing "include"
 Add #include &lt;string.h&gt; to fix the warnings: "implicit
 declaration of function 'memcpy'" and "implicit declaration of function
 'memset'"
Author: Sophie Brun &lt;sophie@freexian.com&gt;
Last-Update: 2016-03-11
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- common/lib/r_assoc.c
+++ common/lib/r_assoc.c
@@ -56,6 +56,7 @@
 
 static char *RCSSTRING="$Id: r_assoc.c,v 1.4 2001/12/24 06:06:26 ekr Exp $";
 
+#include &lt;string.h&gt;
 #include &lt;r_common.h&gt;
 #include "r_assoc.h"
 
--- common/lib/r_bitfield.c
+++ common/lib/r_bitfield.c
@@ -10,6 +10,7 @@
 
 static char *RCSSTRING="$Id: r_bitfield.c,v 1.3 2001/12/24 06:06:26 ekr Exp $";
 
+#include &lt;string.h&gt;
 #include &lt;r_common.h&gt;
 #include "r_bitfield.h"
 
--- common/lib/r_data.c
+++ common/lib/r_data.c
@@ -46,6 +46,7 @@
 
 static char *RCSSTRING="$Id: r_data.c,v 1.3 2001/07/20 23:33:15 ekr Exp $";
 
+#include &lt;string.h&gt;
 #include &lt;r_common.h&gt;
 #include &lt;r_data.h&gt;
 
</pre></body></html>