home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / tools / version.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  626 b   |  26 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.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file README.legal in the main directory of this archive
  10.  * for more details.
  11.  */
  12.  
  13. #include <linux/config.h>
  14. #include <linux/utsname.h>
  15.  
  16. #include "version.h"
  17.  
  18. struct new_utsname system_utsname = {
  19.     UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION,
  20.     UTS_MACHINE, UTS_DOMAINNAME
  21. };
  22.  
  23. char *linux_banner =
  24.     "Atari Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
  25.     LINUX_COMPILE_HOST ") " UTS_VERSION "\n";
  26.