blob: a626944fd1acdd8c75f60b1170b3637d9bf584e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* XRADARVERSION is a string for the version specifier. The leading
* number is the major version number, the letter is the revision ("a"
* for alpha release, "b" for beta release, "c", and so on), and the
* trailing number is the patchlevel.
*/
/*
* Keep these in sync with VERSION in Makefile.in
*/
#ifndef XRADARVERSION
#define XRADARVER 3
#define XRADARREV 1
#define XRADARPLVL 7
#define XRADARVERSION "xradar-version-317"
#endif
|