From 5ecd5ac51dcb8c9f60eefc7ec415bcc3bb765cf6 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Tue, 18 Dec 2012 09:38:32 +0100 Subject: [PATCH] fix compilation on musl libc --- src/hostentdb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hostentdb.c b/src/hostentdb.c index 1562162..337e26c 100644 --- a/src/hostentdb.c +++ b/src/hostentdb.c @@ -2,6 +2,8 @@ #include #include #include +#include +#include #include "ip_type.h" #include "hash.h" @@ -53,4 +55,4 @@ ip_type hdb_get(struct hostent_list *hl, char* host) { } } return ip_type_invalid; -} \ No newline at end of file +}