removed static-declarations from header

pull/3240/head
Tero Heinonen 2015-08-20 10:05:44 +03:00
parent a76b521de3
commit c7b7fe572b
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_ */