freebsd-dev/contrib/libpcap/cmake/have_siocglifconf.c

7 lines
125 B
C
Raw Normal View History

2017-02-12 07:04:44 +00:00
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/sockio.h>
int main() {
ioctl(0, SIOCGLIFCONF, (char *)0);
}