1 /*****************************************************************************
2  * RRDtool 1.2.30  Copyright by Tobi Oetiker, 1997-2009
3  *****************************************************************************
4  * rrd_version Return
5  *****************************************************************************
6  * Initial version by Burton Strauss, ntopSupport.com - 5/2005
7  *****************************************************************************/
8 
9 #include "rrd_tool.h"
10 
11 double
rrd_version(void)12 rrd_version(void)
13 {
14   return NUMVERS;
15 }
16 
17 char *
rrd_strversion(void)18 rrd_strversion(void)
19 {
20   return PACKAGE_VERSION;
21 }
22 
23 
24