12 #ifndef NETLINK_VERSION_H_ 13 #define NETLINK_VERSION_H_ 17 #define LIBNL_STRING "libnl 3.2.29-rc1" 18 #define LIBNL_VERSION "3.2.29-rc1" 20 #define LIBNL_VER_MAJ 3 21 #define LIBNL_VER_MIN 2 22 #define LIBNL_VER_MIC 29 23 #define LIBNL_VER(maj,min) ((maj) << 8 | (min)) 24 #define LIBNL_VER_NUM LIBNL_VER(LIBNL_VER_MAJ, LIBNL_VER_MIN) 26 #define LIBNL_CURRENT 224 27 #define LIBNL_REVISION 0 32 extern const int nl_ver_num;
33 extern const int nl_ver_maj;
34 extern const int nl_ver_min;
35 extern const int nl_ver_mic;