From 352f9f38083176489d935900a4ddc7abc62cf297 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Tue, 29 May 2018 10:57:39 +0200 Subject: ipcpd: Include string for memset in graph.c The memset function was used without including , which some compilers complain about. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- CMakeLists.txt | 2 +- src/ipcpd/normal/pol/graph.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 090a03fa..af051078 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ include(GNUInstallDirs) set(PACKAGE_VERSION_MAJOR 0) set(PACKAGE_VERSION_MINOR 11) -set(PACKAGE_VERSION_PATCH 7) +set(PACKAGE_VERSION_PATCH 8) set(PACKAGE_NAME "${CMAKE_PROJECT_NAME}") set(PACKAGE_DESCRIPTION "The Ouroboros prototype") diff --git a/src/ipcpd/normal/pol/graph.c b/src/ipcpd/normal/pol/graph.c index 5aed1e9a..f3c053ab 100644 --- a/src/ipcpd/normal/pol/graph.c +++ b/src/ipcpd/normal/pol/graph.c @@ -35,6 +35,7 @@ #include #include #include +#include struct edge { struct list_head next; -- cgit v1.2.3