forked from pneymrl2f/nightingale
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
604 B
22 lines
604 B
4 years ago
|
/*****************************************************************************
|
||
|
* 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;
|
||
|
}
|