kernelversion.c

来自「madwifi上的atheros无线网卡驱动源码」· C语言 代码 · 共 17 行

C
17
字号
/* 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: kernelversion.c 1669 2006-07-05 02:21:30Z proski $ */#include <linux/version.h>/* Linux 2.6.18+ uses <linux/utsrelease.h> */#ifndef UTS_RELEASE#include <linux/utsrelease.h>#endifchar *uts_release = UTS_RELEASE;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?