sessiond: Add msgpack-c 3.3.0 to the tree
[lttng-tools.git] / src / vendor / msgpack / version.c
1 #include "vendor/msgpack/msgpack.h"
2
3 const char* msgpack_version(void)
4 {
5 return MSGPACK_VERSION;
6 }
7
8 int msgpack_version_major(void)
9 {
10 return MSGPACK_VERSION_MAJOR;
11 }
12
13 int msgpack_version_minor(void)
14 {
15 return MSGPACK_VERSION_MINOR;
16 }
17
18 int msgpack_version_revision(void)
19 {
20 return MSGPACK_VERSION_REVISION;
21 }
22
This page took 0.028425 seconds and 4 git commands to generate.