1 
2 #ifndef VERSION_BRANCH_H
3 #define VERSION_BRANCH_H
4 
5 /*
6  *	If you're building your own version of aprsc, and have actually
7  *	made modifications in the code, please insert a branch ID here
8  *	so that your variant can be identified.
9  *
10  *	Examples:
11  *
12  *	#define VERSION_BRANCH "-mycall-5"
13  *	(for version 5 of modified tree made by MYCALL)
14  *
15  *	Don't forget to put a - in the beginning, as the string will be
16  *	concated with the version string (aprsc 1.0-725-mycall-5).
17  *
18  *	Thanks!
19  */
20 
21 #define VERSION_BRANCH ""
22 
23 #endif
24 
25