12 #ifndef NETLINK_VERSION_H_ 13 #define NETLINK_VERSION_H_ 17 #define LIBNL_STRING "libnl 3.5.0" 18 #define LIBNL_VERSION "3.5.0" 20 #define LIBNL_VER_MAJ 3 21 #define LIBNL_VER_MIN 5 22 #define LIBNL_VER_MIC 0 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 226 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;