From cf41b0ef17506ba5364d790991bc6bb23cf145be Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Thu, 16 May 2019 09:50:13 +0200 Subject: [PATCH] LibC: Add INET_ADDRSTRLEN define --- LibC/arpa/inet.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibC/arpa/inet.h b/LibC/arpa/inet.h index 7f3a8804e1..ee1de4fd7c 100644 --- a/LibC/arpa/inet.h +++ b/LibC/arpa/inet.h @@ -5,6 +5,8 @@ __BEGIN_DECLS +#define INET_ADDRSTRLEN 16 + const char* inet_ntop(int af, const void* src, char* dst, socklen_t); int inet_pton(int af, const char* src, void* dst);