File: version.h

package info (click to toggle)
trace-cmd 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,348 kB
  • ctags: 3,723
  • sloc: ansic: 33,860; makefile: 530; python: 524
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 */