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

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


The following commit(s) were added to refs/heads/master by this push:
     new 28649933a porting/examples: Fix implicit function declaration
28649933a is described below

commit 28649933ad4f885754313f59dcf75a4a26febd2a
Author: Mingjie Shen <[email protected]>
AuthorDate: Tue Jul 18 21:55:35 2023 -0400

    porting/examples: Fix implicit function declaration
---
 porting/examples/linux/main.c         | 1 +
 porting/examples/linux_blemesh/main.c | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/porting/examples/linux/main.c b/porting/examples/linux/main.c
index a2e255d08..25323b9a0 100644
--- a/porting/examples/linux/main.c
+++ b/porting/examples/linux/main.c
@@ -39,6 +39,7 @@ void nimble_host_task(void *param);
 void ble_hci_sock_ack_handler(void *param);
 void ble_hci_sock_init(void);
 void ble_hci_sock_set_device(int dev);
+void ble_store_ram_init(void);
 
 #define TASK_DEFAULT_PRIORITY       1
 #define TASK_DEFAULT_STACK          NULL
diff --git a/porting/examples/linux_blemesh/main.c 
b/porting/examples/linux_blemesh/main.c
index f5c5e4f04..5a9befdc1 100644
--- a/porting/examples/linux_blemesh/main.c
+++ b/porting/examples/linux_blemesh/main.c
@@ -38,6 +38,8 @@ static struct ble_npl_task s_task_mesh_adv;
 void nimble_host_task(void *param);
 void ble_hci_sock_ack_handler(void *param);
 void ble_hci_sock_init(void);
+void ble_hci_sock_set_device(int dev);
+void ble_store_ram_init(void);
 
 #define TASK_DEFAULT_PRIORITY       1
 #define TASK_DEFAULT_STACK          NULL

Reply via email to