]> git.decadent.org.uk Git - nfs-utils.git/blob - tools/getkversion/getkversion.c
Fix rpc_init so it isn't confused by ssh
[nfs-utils.git] / tools / getkversion / getkversion.c
1 /*
2  * Get version number of the kernel this was compiled for.
3  * This is NOT the same as calling uname(), because we may be
4  * running on a different kernel.
5  */
6
7 #include "config.h"
8
9 #include <linux/version.h>
10 #include <stdio.h>
11
12 int
13 main(void)      /* This is for Dan Popp ;) */
14 {
15         printf("%s\n", UTS_RELEASE);
16         return 0;
17 }