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