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

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

commit 03803073d828de98a84c4e0fc16628162b6eb541
Author: PengZheng <[email protected]>
AuthorDate: Thu Dec 1 19:36:24 2022 +0800

    Add missing <stdarg.h>.
---
 bundles/logging/log_service_api/include/celix_log_service.h | 1 +
 libs/framework/include/celix_bundle_context.h               | 1 +
 libs/framework/include/celix_framework.h                    | 1 +
 libs/framework/include/celix_log.h                          | 1 +
 4 files changed, 4 insertions(+)

diff --git a/bundles/logging/log_service_api/include/celix_log_service.h 
b/bundles/logging/log_service_api/include/celix_log_service.h
index 64bb9cb4..e766b267 100644
--- a/bundles/logging/log_service_api/include/celix_log_service.h
+++ b/bundles/logging/log_service_api/include/celix_log_service.h
@@ -21,6 +21,7 @@
 #define CELIX_LOG_SERVICE_H
 
 #include "celix_log_level.h"
+#include <stdarg.h>
 
 #ifdef __cplusplus
 extern "C" {
diff --git a/libs/framework/include/celix_bundle_context.h 
b/libs/framework/include/celix_bundle_context.h
index 245c356c..39bae23e 100644
--- a/libs/framework/include/celix_bundle_context.h
+++ b/libs/framework/include/celix_bundle_context.h
@@ -22,6 +22,7 @@
 #include "celix_properties.h"
 #include "celix_array_list.h"
 #include "celix_filter.h"
+#include <stdarg.h>
 
 #ifndef CELIX_BUNDLE_CONTEXT_H_
 #define CELIX_BUNDLE_CONTEXT_H_
diff --git a/libs/framework/include/celix_framework.h 
b/libs/framework/include/celix_framework.h
index 906944db..df775946 100644
--- a/libs/framework/include/celix_framework.h
+++ b/libs/framework/include/celix_framework.h
@@ -25,6 +25,7 @@
 #include "celix_properties.h"
 #include "celix_log_level.h"
 #include "celix_array_list.h"
+#include <stdarg.h>
 
 #ifdef __cplusplus
 extern "C" {
diff --git a/libs/framework/include/celix_log.h 
b/libs/framework/include/celix_log.h
index 6570f70b..bb1e0e61 100644
--- a/libs/framework/include/celix_log.h
+++ b/libs/framework/include/celix_log.h
@@ -25,6 +25,7 @@
 #include "celix_log_level.h"
 #include "celix_errno.h"
 #include "framework_exports.h"
+#include <stdarg.h>
 
 #ifdef __cplusplus
 extern "C" {

Reply via email to