Use decimal notation in a debug message
[madwifi/.git] / kernelversion.c
1 /* This file is used for a trick to determine the version of the kernel
2  * build tree. Simply grepping <linux/version.h> doesn't work, since
3  * some distributions have multiple UTS_RELEASE definitions in that
4  * file.
5  * Taken from the lm_sensors project.
6  *
7  * $Id$
8  */
9 #include <linux/version.h>
10
11 /* Linux 2.6.18+ uses <linux/utsrelease.h> */
12 #ifndef UTS_RELEASE
13 #include <linux/utsrelease.h>
14 #endif
15
16 char *uts_release = UTS_RELEASE;