diff mbox series

[3/5] util: Add missing includes

Message ID 20200206111000.889-4-ceggers@arri.de
State Accepted
Headers show
Series Another bunch of build fixes | expand

Commit Message

Christian Eggers Feb. 6, 2020, 11:09 a.m. UTC
- free() requires stdlib.h

Fixes: 0e49d983dd ("Factorize SETSTRING and STRINGIFY macros")
Signed-off-by: Christian Eggers <ceggers@arri.de>
---
 include/util.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/include/util.h b/include/util.h
index 52928b8..906be9a 100644
--- a/include/util.h
+++ b/include/util.h
@@ -9,6 +9,7 @@ 
 #define _UTIL_H
 
 #include <stdint.h>
+#include <stdlib.h>
 #include <string.h>
 #if defined(__linux__)
 #include <linux/types.h>