examples: ecore: bring back inet.h include for inet_pton()

In commit f7c560c311 this include has been
removed while we still need it for inet_pton() as the compliler warns us
about.

Reviewed-by: Vincent Torri <vincent.torri@gmail.com>
Differential Revision: https://phab.enlightenment.org/D7873
This commit is contained in:
Stefan Schmidt 2019-02-04 13:10:40 +01:00
parent 7ef793e7ef
commit 305f77607c
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#include <errno.h>
#include <unistd.h>
#include <gnutls/gnutls.h>