sigar/src/sigar_version.c.in

23 lines
488 B
C
Raw Normal View History

2005-12-15 07:40:23 +08:00
#include "sigar.h"
static sigar_version_t sigar_version = {
"@@BUILD_DATE@@",
"@@SCM_REVISION@@",
2005-12-15 07:40:23 +08:00
"@@VERSION_STRING@@",
"@@ARCHNAME@@",
2005-12-15 07:48:28 +08:00
"@@ARCHLIB@@",
"@@BINNAME@@",
2008-08-12 09:25:59 +08:00
"SIGAR-@@VERSION_STRING@@, "
2009-02-11 09:37:51 +08:00
"SCM revision @@SCM_REVISION@@, "
2008-08-12 09:25:59 +08:00
"built @@BUILD_DATE@@ as @@ARCHLIB@@",
2005-12-15 07:40:23 +08:00
@@VERSION_MAJOR@@,
@@VERSION_MINOR@@,
2006-07-14 05:56:06 +08:00
@@VERSION_MAINT@@,
@@VERSION_BUILD@@
2005-12-15 07:40:23 +08:00
};
SIGAR_DECLARE(sigar_version_t *) sigar_version_get(void)
{
return &sigar_version;
}