Use kernel headers for netlink definitions

This commit is contained in:
Ulrich Drepper 2011-11-01 08:43:33 -04:00
parent 02f9c6cfe2
commit 432d41ceec
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-11-01 Ulrich Drepper <drepper@gmail.com>
* nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
2011-10-31 Paul Pluzhnikov <ppluzhnikov@google.com>
* elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce

View File

@ -34,7 +34,8 @@
#include <unistd.h>
#include <arpa/inet.h>
#ifdef HAVE_NETLINK
# include <netlink/netlink.h>
# include <linux/netlink.h>
# include <linux/rtnetlink.h>
#endif
#ifdef HAVE_EPOLL
# include <sys/epoll.h>