kernelversion.c.svn-base
来自「最新之atheros芯片driver source code, 基于linux操」· SVN-BASE 代码 · 共 17 行
SVN-BASE
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$ */#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 + -
显示快捷键?