blob: 32a07564205c63a0e9eb4fd149b6020d4fc60b9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <xen/compile.h>
const char *xen_compile_date(void)
{
return XEN_COMPILE_DATE;
}
const char *xen_compile_time(void)
{
return XEN_COMPILE_TIME;
}
const char *xen_compile_by(void)
{
return XEN_COMPILE_BY;
}
const char *xen_compile_domain(void)
{
return XEN_COMPILE_DOMAIN;
}
const char *xen_compile_host(void)
{
return XEN_COMPILE_HOST;
}
const char *xen_compiler(void)
{
return XEN_COMPILER;
}
unsigned int xen_major_version(void)
{
return XEN_VERSION;
}
unsigned int xen_minor_version(void)
{
return XEN_SUBVERSION;
}
const char *xen_extra_version(void)
{
return XEN_EXTRAVERSION;
}
const char *xen_changeset(void)
{
return XEN_CHANGESET;
}
const char *xen_banner(void)
{
return XEN_BANNER;
}
|