blob: 257c5d02ffc52945c8ea40aaff0e1222ac35671d [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 9652e6b3c43b4c051f2ff0e000d7ebf5fbab418e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 29 Aug 2022 10:54:51 -0700
4Subject: [PATCH] include string.h for memset prototype
5
6Upstream-Status: Submitted [https://pagure.io/dlm/pull-request/3]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 dlm_controld/lib.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/dlm_controld/lib.c b/dlm_controld/lib.c
13index 8cbdd27f..a7502fcd 100644
14--- a/dlm_controld/lib.c
15+++ b/dlm_controld/lib.c
16@@ -10,6 +10,7 @@
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdint.h>
20+#include <string.h>
21 #include <errno.h>
22 #include <time.h>
23 #include <sys/types.h>