File: version.h

package info (click to toggle)
comedi 0.7.76%2B20080817cvs-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,660 kB
  • ctags: 14,259
  • sloc: ansic: 104,304; sh: 1,417; makefile: 625; perl: 457
file content (18 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __MULTI_VERSION_H_
#define __MULTI_VERSION_H_

#include <config.h>
#include_next <linux/version.h>

#ifdef UTS_RELEASE_OVERRIDE
#ifdef UTS_RELEASE
#undef UTS_RELEASE
#endif
#define UTS_RELEASE UTS_RELEASE_OVERRIDE
#endif

#ifndef KERNEL_VERSION
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#endif

#endif