From 05aac92913dd40340c8d4f46327fa8f23402f341 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 15 Nov 2012 12:04:11 -0500 Subject: [PATCH] include: export uv_inet_* functions --- include/uv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/uv.h b/include/uv.h index 9d80d9a1..7f3bc589 100644 --- a/include/uv.h +++ b/include/uv.h @@ -1701,8 +1701,8 @@ UV_EXTERN int uv_ip6_name(struct sockaddr_in6* src, char* dst, size_t size); /* Cross-platform IPv6-capable implementation of the 'standard' inet_ntop */ /* and inet_pton functions. On success they return UV_OK. If an error */ /* the target of the `dst` pointer is unmodified. */ -uv_err_t uv_inet_ntop(int af, const void* src, char* dst, size_t size); -uv_err_t uv_inet_pton(int af, const char* src, void* dst); +UV_EXTERN uv_err_t uv_inet_ntop(int af, const void* src, char* dst, size_t size); +UV_EXTERN uv_err_t uv_inet_pton(int af, const char* src, void* dst); /* Gets the executable path */ UV_EXTERN int uv_exepath(char* buffer, size_t* size);