xref: /aosp_15_r20/external/libnl/lib/version.c (revision 4dc78e53d49367fa8e61b07018507c90983a077d)
1 /* SPDX-License-Identifier: LGPL-2.1-only */
2 /*
3  * Copyright (c) 2003-2012 Thomas Graf <[email protected]>
4  */
5 
6 /**
7  * @ingroup core
8  * @defgroup utils Utilities
9  *
10  * Run-time version information
11  *
12  * @{
13  */
14 
15 
16 /**
17  * @name Run-time version information
18  * @{
19  */
20 
21 #include "nl-default.h"
22 
23 #include <netlink/version.h>
24 
25 const int      nl_ver_num = LIBNL_VER_NUM;
26 const int      nl_ver_maj = LIBNL_VER_MAJ;
27 const int      nl_ver_min = LIBNL_VER_MIN;
28 const int      nl_ver_mic = LIBNL_VER_MIC;
29 
30 /** @} */
31 
32 /** @} */
33