• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _VERSION_H
2 #define _VERSION_H
3 
4 #define VERSION(a, b) (((a) << 8) + (b))
5 
6 #ifdef BUILDGUI
7 #include "ks_version.h"
8 #else
9 #include "tc_version.h"
10 #endif
11 
12 #endif /* _VERSION_H */
13