1 /*
   2  * Copyright 2001-2003 Sun Microsystems, Inc.  All rights reserved.
   3  * Use is subject to license terms.
   4  */
   5 
   6 #pragma ident   "%Z%%M% %I%     %E% SMI"
   7 
   8 /**************************************************************************** 
   9  
  10   Copyright (c) 1999,2000 WU-FTPD Development Group. 
  11   All rights reserved.
  12  
  13   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  14     The Regents of the University of California.
  15   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  16   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  17   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  18   Portions Copyright (c) 1998 Sendmail, Inc.
  19   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  20   Portions Copyright (c) 1997 by Stan Barber.
  21   Portions Copyright (c) 1997 by Kent Landfield.
  22   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  23     Free Software Foundation, Inc.  
  24 
  25   Use and distribution of this software and its source code are governed 
  26   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  27 
  28   If you did not receive a copy of the license, it may be obtained online
  29   at http://www.wu-ftpd.org/license.html.
  30 
  31   $Id: COPYRIGHT.c,v 1.7 2000/07/01 18:46:31 wuftpd Exp $
  32  
  33 ****************************************************************************/
  34 
  35 #include <stdio.h>
  36 
  37 void print_copyright(void);
  38 extern char version[];
  39 
  40 char *Copyright = "\n\
  41   Copyright (c) 1999,2000 WU-FTPD Development Group.\n\
  42   All rights reserved.\n\
  43 \n\
  44   Copyright 2001-2003 Sun Microsystems, Inc.  All rights reserved.\n\
  45   Use is subject to license terms.\n\
  46 \n\
  47   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994\n\
  48     The Regents of the University of California.\n\
  49   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.\n\
  50   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.\n\
  51   Portions Copyright (c) 1989 Massachusetts Institute of Technology.\n\
  52   Portions Copyright (c) 1998 Sendmail, Inc.\n\
  53   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.\n\
  54   Portions Copyright (c) 1997 by Stan Barber.\n\
  55   Portions Copyright (c) 1997 by Kent Landfield.\n\
  56   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997\n\
  57     Free Software Foundation, Inc.  \n\
  58 \n\
  59   Use and distribution of this software and its source code are governed \n\
  60   by the terms and conditions of the WU-FTPD Software License (\"LICENSE\").\n\
  61 \n\
  62   If you did not receive a copy of the license, it may be obtained online\n\
  63   at http://www.wu-ftpd.org/license.html.\n";
  64 
  65 void print_copyright(void)
  66 {
  67     printf("%s\n", Copyright);
  68     printf("%s\n", version);
  69 }