sigar/src/sigar_version.c.in

21 lines
459 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 08:05:03 +08:00
"SIGAR-@@VERSION_STRING@@, SVN revision @@SCM_REVISION@@, built @@BUILD_DATE@@",
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;
}