From c7b7fe572b88854d7920dcb2345741ed9ebbc430 Mon Sep 17 00:00:00 2001 From: Tero Heinonen Date: Thu, 20 Aug 2015 10:05:44 +0300 Subject: [PATCH] removed static-declarations from header --- source/include/coap_server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/include/coap_server.h b/source/include/coap_server.h index ba32e213f8..98023a2e8b 100644 --- a/source/include/coap_server.h +++ b/source/include/coap_server.h @@ -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_ */