nightingale/vendor/github.com/open-falcon/rrdlite/rrd_version.c

22 lines
604 B
C

/*****************************************************************************
* RRDtool 1.4.9 Copyright by Tobi Oetiker, 1997-2014
*****************************************************************************
* rrd_version Return
*****************************************************************************
* Initial version by Burton Strauss, ntopSupport.com - 5/2005
*****************************************************************************/
#include "rrd_tool.h"
double rrd_version(
void)
{
return NUMVERS;
}
char *rrd_strversion(
void)
{
return PACKAGE_VERSION;
}