6#ifndef NETLINK_VERSION_H_
7#define NETLINK_VERSION_H_
15#define LIBNL_STRING "libnl 3.10.0"
16#define LIBNL_VERSION "3.10.0"
18#define LIBNL_VER_MAJ 3
19#define LIBNL_VER_MIN 10
20#define LIBNL_VER_MIC 0
21#define LIBNL_VER(maj,min) ((maj) << 8 | (min))
22#define LIBNL_VER_NUM LIBNL_VER(LIBNL_VER_MAJ, LIBNL_VER_MIN)
24#define LIBNL_CURRENT 226
25#define LIBNL_REVISION 0
30extern const int nl_ver_num;
31extern const int nl_ver_maj;
32extern const int nl_ver_min;
33extern const int nl_ver_mic;