From 213e44c6b27a804b142bc24973ebfcb986933bfa Mon Sep 17 00:00:00 2001 From: Peter Harliman Liem Date: Sun, 30 Oct 2016 05:17:59 +0800 Subject: [PATCH] Add end bracket for cpp extern (#351) The missing bracket would cause compilation error in cpp. --- containers/net/net_sockets.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/containers/net/net_sockets.h b/containers/net/net_sockets.h index f8451f3..e5a97a2 100644 --- a/containers/net/net_sockets.h +++ b/containers/net/net_sockets.h @@ -256,4 +256,8 @@ uint16_t vc_container_net_to_host_16( uint16_t value ); * \return The converted value. */ uint16_t vc_container_net_from_host_16( uint16_t value ); +#ifdef __cplusplus +} +#endif + #endif /* VC_NET_SOCKETS_H */