File: version.h

package info (click to toggle)
trace-cmd 2.6-0.1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,660 kB
  • ctags: 4,276
  • sloc: ansic: 38,878; makefile: 544; python: 538
file content (17 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _VERSION_H
#define _VERSION_H

#define VERSION(a, b) (((a) << 8) + (b))

#ifdef BUILDGUI
#include "ks_version.h"
#else
#include "tc_version.h"
#endif

#define _STR(x)	#x
#define STR(x)	_STR(x)

#define FILE_VERSION_STRING STR(FILE_VERSION)

#endif /* _VERSION_H */