home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.2 / LINUX-1.2 / LINUX-1 / linux / init / version.c < prev   
Encoding:
C/C++ Source or Header  |  1995-01-05  |  468 b   |  21 lines

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