libnl 3.11.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 "nl-default.h"
22
23#include <netlink/version.h>
24
25const int nl_ver_num = LIBNL_VER_NUM;
26const int nl_ver_maj = LIBNL_VER_MAJ;
27const int nl_ver_min = LIBNL_VER_MIN;
28const int nl_ver_mic = LIBNL_VER_MIC;
29
30/** @} */
31
32/** @} */