blob: f6ea212667ed0f90d9f3e050c4af3bd01ccec242 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001From c8deae54f92d636878097063b411af9fb5262ad3 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 15 Aug 2022 07:24:24 -0700
4Subject: [PATCH] include string.h for memset()
5
6Fixes implicit function declaration warning e.g.
7
8resuse.c:103:3: error: call to undeclared library function 'memset' with type 'void *(void *, int, unsigned long)'
9
10Upstream-Status: Submitted [https://lists.gnu.org/archive/html/bug-time/2022-08/msg00001.html]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 src/resuse.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/src/resuse.c b/src/resuse.c
17index cf5a08c..9d3d18a 100644
18--- a/src/resuse.c
19+++ b/src/resuse.c
20@@ -22,6 +22,7 @@
21 */
22
23 #include "config.h"
24+#include <string.h>
25 #include <sys/time.h>
26 #include <sys/wait.h>
27 #include <sys/resource.h>