• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * lib/version.c	Run-time version information
3  *
4  *	This library is free software; you can redistribute it and/or
5  *	modify it under the terms of the GNU Lesser General Public
6  *	License as published by the Free Software Foundation version 2.1
7  *	of the License.
8  *
9  * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
10  */
11 
12 /**
13  * @ingroup core
14  * @defgroup utils Utilities
15  *
16  * Run-time version information
17  *
18  * @{
19  */
20 
21 
22 /**
23  * @name Run-time version information
24  * @{
25  */
26 
27 #include <netlink/version.h>
28 
29 const int      nl_ver_num = LIBNL_VER_NUM;
30 const int      nl_ver_maj = LIBNL_VER_MAJ;
31 const int      nl_ver_min = LIBNL_VER_MIN;
32 const int      nl_ver_mic = LIBNL_VER_MIC;
33 
34 /** @} */
35 
36 /** @} */
37