mesh: fix prototypes

This commit is contained in:
Matthias Ringwald 2019-07-12 23:18:25 +02:00
parent 7911e10992
commit 4407d0bb1b
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ void mesh_transport_set_src(mesh_transport_pdu_t * transport_pdu, uint16_t src);
void mesh_transport_set_dest(mesh_transport_pdu_t * transport_pdu, uint16_t dest);
void mesh_lower_transport_init();
void mesh_lower_transport_init(void);
void mesh_lower_transport_set_higher_layer_handler(void (*pdu_handler)( mesh_transport_callback_type_t callback_type, mesh_transport_status_t status, mesh_pdu_t * pdu));
void mesh_lower_transport_message_processed_by_higher_layer(mesh_pdu_t * pdu);

View File

@ -50,7 +50,7 @@ extern "C"
#include "mesh/mesh_network.h"
#include "mesh/mesh_lower_transport.h"
void mesh_upper_transport_init();
void mesh_upper_transport_init(void);
void mesh_upper_transport_message_processed_by_higher_layer(mesh_pdu_t * pdu);