You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by bp...@apache.org on 2015/09/28 12:02:49 UTC

[04/19] celix git commit: CELIX-251: added missing includes

CELIX-251: added missing includes


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/f32a2335
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/f32a2335
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/f32a2335

Branch: refs/heads/feature/CELIX-247_android_support
Commit: f32a2335989ad6f9710a55c385b85c3b83413afd
Parents: 1208336
Author: Bjoern Petri <bp...@apache.org>
Authored: Mon Aug 17 11:11:41 2015 +0200
Committer: Bjoern Petri <bp...@apache.org>
Committed: Mon Aug 17 11:11:41 2015 +0200

----------------------------------------------------------------------
 device_access/example/base_driver/private/src/base_driver.c        | 2 +-
 .../example/consuming_driver/private/src/consuming_driver.c        | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/f32a2335/device_access/example/base_driver/private/src/base_driver.c
----------------------------------------------------------------------
diff --git a/device_access/example/base_driver/private/src/base_driver.c b/device_access/example/base_driver/private/src/base_driver.c
index fafec6d..33a2dca 100644
--- a/device_access/example/base_driver/private/src/base_driver.c
+++ b/device_access/example/base_driver/private/src/base_driver.c
@@ -24,7 +24,7 @@
  *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
-
+#include <string.h>
 #include <celix_errno.h>
 #include <bundle_activator.h>
 #include <bundle_context.h>

http://git-wip-us.apache.org/repos/asf/celix/blob/f32a2335/device_access/example/consuming_driver/private/src/consuming_driver.c
----------------------------------------------------------------------
diff --git a/device_access/example/consuming_driver/private/src/consuming_driver.c b/device_access/example/consuming_driver/private/src/consuming_driver.c
index 0842d57..b44ac32 100644
--- a/device_access/example/consuming_driver/private/src/consuming_driver.c
+++ b/device_access/example/consuming_driver/private/src/consuming_driver.c
@@ -24,6 +24,7 @@
  *  \copyright	Apache License, Version 2.0
  */
 #include <stdlib.h>
+#include <string.h>
 
 #include <device.h>
 #include <service_tracker.h>