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