libnl 3.7.0
version.c
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2003-2012 Thomas Graf <tgraf@suug.ch>
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 <netlink/version.h>
22
23const int nl_ver_num = LIBNL_VER_NUM;
24const int nl_ver_maj = LIBNL_VER_MAJ;
25const int nl_ver_min = LIBNL_VER_MIN;
26const int nl_ver_mic = LIBNL_VER_MIC;
27
28/** @} */
29
30/** @} */