1/* SPDX-License-Identifier: BSD-3-Clause */
2#include "libslirp.h"
3#include "util.h"
4
5const char *
6slirp_version_string(void)
7{
8 return stringify(SLIRP_MAJOR_VERSION) "."
9 stringify(SLIRP_MINOR_VERSION) "."
10 stringify(SLIRP_MICRO_VERSION);
11}
12