File: get_version.c

package info (click to toggle)
linux-wlan-ng 0.2.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,672 kB
  • ctags: 3,957
  • sloc: ansic: 33,250; sh: 1,973; makefile: 796; python: 493; perl: 144
file content (11 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include <linux/version.h>

#ifndef UTS_RELEASE
#include <linux/utsrelease.h>
#endif

#include <stdio.h>
main()
{
	printf("%s", UTS_RELEASE);
}