blob: 1ed6472f6d65ef786c02546aef06fa54d6432d99 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 097e108b81f2571c4c51871044adf409b6954649 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 3 Sep 2022 00:44:52 -0700
4Subject: [PATCH] ihpm: Include stdlib.h for malloc/free/atoi functions
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 util/ihpm.c | 1 +
10 1 file changed, 1 insertion(+)
11
12diff --git a/util/ihpm.c b/util/ihpm.c
13index 740ab74..5ad9ef6 100644
14--- a/util/ihpm.c
15+++ b/util/ihpm.c
16@@ -68,6 +68,7 @@ typedef uint32_t socklen_t;
17 #endif
18 #include <stdio.h>
19 #include <stdarg.h>
20+#include <stdlib.h> /* malloc/free/atoi */
21 #include <string.h>
22 #include <time.h>
23
24--
252.37.3
26