Add missing #include in netdb.c for atoi()

This commit is contained in:
Dirk Ziegelmeier 2017-01-05 08:55:12 +01:00
parent 0ffaccaec3
commit 3a20ae3830

View File

@ -46,7 +46,8 @@
#include "lwip/api.h"
#include "lwip/dns.h"
#include <string.h>
#include <string.h> /* memset */
#include <stdlib.h> /* atoi */
/** helper struct for gethostbyname_r to access the char* buffer */
struct gethostbyname_r_helper {