version.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/init/version.c
  3.  *
  4.  *  Copyright (C) 1992  Theodore Ts'o
  5.  *
  6.  *  May be freely distributed as part of Linux.
  7.  */
  8. #include <linux/uts.h>
  9. #include <linux/utsname.h>
  10. #include <linux/version.h>
  11. #include <linux/compile.h>
  12. #define version(a) Version_ ## a
  13. #define version_string(a) version(a)
  14. int version_string(LINUX_VERSION_CODE);
  15. struct new_utsname system_utsname = {
  16. UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION,
  17. UTS_MACHINE, UTS_DOMAINNAME
  18. };
  19. const char *linux_banner = 
  20. "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
  21. LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "n";