libnl  3.6.0
version.h
1 /* SPDX-License-Identifier: LGPL-2.1-only */
2 /*
3  * Copyright (c) 2008-2011 Thomas Graf <tgraf@suug.ch>
4  */
5 
6 #ifndef NETLINK_VERSION_H_
7 #define NETLINK_VERSION_H_
8 
9 /* Compile Time Versioning Information */
10 
11 #define LIBNL_STRING "libnl 3.6.0"
12 #define LIBNL_VERSION "3.6.0"
13 
14 #define LIBNL_VER_MAJ 3
15 #define LIBNL_VER_MIN 6
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)
19 
20 #define LIBNL_CURRENT 226
21 #define LIBNL_REVISION 0
22 #define LIBNL_AGE 26
23 
24 /* Run-time version information */
25 
26 extern const int nl_ver_num;
27 extern const int nl_ver_maj;
28 extern const int nl_ver_min;
29 extern const int nl_ver_mic;
30 
31 #endif