1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-10-07 02:42:24 +00:00

include <arpa/inet.h> inside tool.h

In file included from hash.c:24:
../tool/tool.h:27: warning: `struct in_addr' declared inside parameter list
This commit is contained in:
Florian Westphal
2007-11-25 18:42:37 +00:00
parent 47a0379e2b
commit 20ce56cc5b
4 changed files with 11 additions and 14 deletions

View File

@@ -14,7 +14,7 @@
#include "portab.h"
static char UNUSED id[] = "$Id: tool.c,v 1.7 2007/11/23 16:26:05 fw Exp $";
static char UNUSED id[] = "$Id: tool.c,v 1.8 2007/11/25 18:42:38 fw Exp $";
#include "imp.h"
#include <assert.h>
@@ -23,9 +23,6 @@ static char UNUSED id[] = "$Id: tool.c,v 1.7 2007/11/23 16:26:05 fw Exp $";
#include <string.h>
#include <netinet/in.h>
#ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
#endif
#include "exp.h"
#include "tool.h"