prepare for the release of rrdtool-1.2.17
[rrdtool.git] / src / rrd_version.c
1 /*****************************************************************************
2  * RRDtool 1.2.17  Copyright by Tobi Oetiker, 1997-2006
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
12 rrd_version(void)
13 {
14   return NUMVERS;
15 }
16
17 char *
18 rrd_strversion(void)
19 {
20   return PACKAGE_VERSION;
21 }
22
23