fix header selection for lsif.c

This commit is contained in:
gardners 2013-07-19 10:34:24 +09:30
parent 8968d5cf05
commit ccc37f7c4d

6
lsif.c
View File

@ -51,7 +51,13 @@
#if __MACH__
#include <net/if_dl.h>
#endif
#ifdef HAVE_LINUX_IF_H
#include <linux/if.h>
#else
#ifdef HAVE_NET_IF_H
#include <net/if.h>
#endif
#endif
/* On platforms that have variable length
ifreq use the old fixed length interface instead */