blob: 3b6fd7d702eebc4eadbcef2e1cff6e9759ef9d71 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From c7753f82261d49862d5e0f9691bf87799d36ef0c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 31 Aug 2022 16:20:03 -0700
4Subject: [PATCH] client: Include string.h form mem* function prototypes
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 client.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/client.c b/client.c
13index 883b1de..e474e55 100644
14--- a/client.c
15+++ b/client.c
16@@ -16,6 +16,7 @@
17 on your Linux system; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
19 #include <stdio.h>
20+#include <string.h>
21 #include <sys/socket.h>
22 #include <sys/un.h>
23 #include <unistd.h>
24--
252.37.3
26