/* * Get version number of the kernel this was compiled for. * This is NOT the same as calling uname(), because we may be * running on a different kernel. */ #include "config.h" #include #include int main(void) /* This is for Dan Popp ;) */ { printf("%s\n", UTS_RELEASE); return 0; }