summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/wlan-ng26-utils/tmp/trunk/scripts/get_version.c
blob: cde9707094f1199883f1e6f2f1c46c0a08a7814a (plain)
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);
}