Include <sys/types.h> before <net/if_arp.h> in netutil.cc. I needed this on OS

X when compiling against the 10.4u SDK.
This commit is contained in:
david 2010-06-24 15:04:16 +00:00
parent a468082429
commit 0a3c6f1fc7

View file

@ -97,10 +97,11 @@
#else
#include <sys/ioctl.h>
#endif
#include <net/if_arp.h>
#include <assert.h>
#include <errno.h>
#include <sys/types.h>
#include <net/if_arp.h>
#if HAVE_NET_IF_H
#ifndef NET_IF_H /* why doesn't OpenBSD do this? */