Merge pull request #3 from ARMmbed/bugfix

removed static-declarations from header
pull/3240/head
Tero Heinonen 2015-10-28 08:59:47 +02:00
commit 1b5c9d1a8d
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ void coap_server_delete_session(int8_t service_id);
int8_t coap_server_service_init(int8_t interface_id, uint16_t listen_port, uint8_t service_options);
static coap_service_session_t *coap_service_search_from_list(int8_t interface_id);
coap_service_session_t *coap_service_search_from_list(int8_t interface_id);
static coap_service_session_t *coap_service_find_by_service(int8_t service_id);
coap_service_session_t *coap_service_find_by_service(int8_t service_id);
#endif /* COAP_SERVER_H_ */