6#ifndef NETLINK_VERSION_H_
7#define NETLINK_VERSION_H_
11#define LIBNL_STRING "libnl 3.7.0"
12#define LIBNL_VERSION "3.7.0"
14#define LIBNL_VER_MAJ 3
15#define LIBNL_VER_MIN 7
16#define LIBNL_VER_MIC 0
17#define LIBNL_VER(maj,min) ((maj) << 8 | (min))
18#define LIBNL_VER_NUM LIBNL_VER(LIBNL_VER_MAJ, LIBNL_VER_MIN)
20#define LIBNL_CURRENT 226
21#define LIBNL_REVISION 0
26extern const int nl_ver_num;
27extern const int nl_ver_maj;
28extern const int nl_ver_min;
29extern const int nl_ver_mic;