File: version.h

package info (click to toggle)
trace-cmd 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,056 kB
  • sloc: ansic: 33,750; makefile: 966; sh: 762; python: 604
file content (12 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#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

#endif /* _VERSION_H */