Add end bracket for cpp extern (#351)

The missing bracket would cause compilation error in cpp.
This commit is contained in:
Peter Harliman Liem
2016-10-30 05:17:59 +08:00
committed by popcornmix
parent 9928048d92
commit 213e44c6b2

View File

@@ -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 */