mirror of
https://github.com/proski/madwifi
synced 2024-11-22 06:21:47 +03:00
2c0d8db912
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@2721 0192ed92-7a03-0410-a25b-9323aeb14dbd
17 lines
436 B
C
17 lines
436 B
C
/* This file is used for a trick to determine the version of the kernel
|
|
* build tree. Simply grepping <linux/version.h> doesn't work, since
|
|
* some distributions have multiple UTS_RELEASE definitions in that
|
|
* file.
|
|
* Taken from the lm_sensors project.
|
|
*
|
|
* $Id$
|
|
*/
|
|
#include <linux/version.h>
|
|
|
|
/* Linux 2.6.18+ uses <linux/utsrelease.h> */
|
|
#ifndef UTS_RELEASE
|
|
#include <linux/utsrelease.h>
|
|
#endif
|
|
|
|
char *uts_release = UTS_RELEASE;
|