blob: d4ea6ec3b2d3e7b23e4f97f7751884d1943695bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "libetpan_version.h"
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif
/* version of libEtPan! at runtime */
int libetpan_get_version_major(void)
{
return LIBETPAN_VERSION_MAJOR;
}
int libetpan_get_version_minor(void)
{
return LIBETPAN_VERSION_MINOR;
}
|