source:
GPL/include/linux/version.h@
1
Last change on this file since 1 was 1, checked in by , 20 years ago | |
---|---|
File size: 318 bytes |
Line | |
---|---|
1 | /* $Id: version.h,v 1.1.1.1 2003/07/02 13:57:02 eleph Exp $ */ |
2 | |
3 | #ifndef _LINUX_VERSION_H |
4 | #define _LINUX_VERSION_H |
5 | |
6 | #ifndef KERNEL_VERSION |
7 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
8 | #endif |
9 | |
10 | #define LINUX_VERSION_CODE 0x020300 |
11 | |
12 | #define UTS_RELEASE "OS/2" |
13 | |
14 | #endif /* _LINUX_VERSION_H */ |
Note:
See TracBrowser
for help on using the repository browser.