You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2020/02/09 14:05:26 UTC

[celix] branch feature/query_command updated: #144: Adds some missing include files

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/query_command
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/query_command by this push:
     new 5d4d80f  #144: Adds some missing include files
5d4d80f is described below

commit 5d4d80f5671de8c5bff379d4dcd213474e0fb736
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Sun Feb 9 15:05:08 2020 +0100

    #144: Adds some missing include files
---
 libs/utils/include/memstream/open_memstream.h | 2 ++
 libs/utils/src/utils.c                        | 1 +
 2 files changed, 3 insertions(+)

diff --git a/libs/utils/include/memstream/open_memstream.h b/libs/utils/include/memstream/open_memstream.h
index e87bb0a..73a2290 100644
--- a/libs/utils/include/memstream/open_memstream.h
+++ b/libs/utils/include/memstream/open_memstream.h
@@ -1,6 +1,8 @@
 #ifndef OPEN_MEMSTREAM_H_
 #define OPEN_MEMSTREAM_H_
 
+#include <stdio.h>
+
 #ifdef __cplusplus
 extern "C"
 {
diff --git a/libs/utils/src/utils.c b/libs/utils/src/utils.c
index 2c4886d..9d8b194 100644
--- a/libs/utils/src/utils.c
+++ b/libs/utils/src/utils.c
@@ -20,6 +20,7 @@
 
 #include <stdlib.h>
 #include <string.h>
+#include <assert.h>
 
 #include "utils.h"
 #include "celix_utils.h"