1139825Simp/*-
2321905Sdelphij * Copyright (C) 1992-2017 The FreeBSD Project. All rights reserved.
323227Swosch *
423227Swosch * Redistribution and use in source and binary forms, with or without
523227Swosch * modification, are permitted provided that the following conditions
623227Swosch * are met:
723227Swosch * 1. Redistributions of source code must retain the above copyright
823227Swosch *    notice, this list of conditions and the following disclaimer.
923227Swosch * 2. Redistributions in binary form must reproduce the above copyright
1023227Swosch *    notice, this list of conditions and the following disclaimer in the
1123227Swosch *    documentation and/or other materials provided with the distribution.
1223227Swosch *
1344832Swosch * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1423227Swosch * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1523227Swosch * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1644832Swosch * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
1723227Swosch * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1823227Swosch * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1923227Swosch * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2023227Swosch * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2123227Swosch * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2223227Swosch * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2323227Swosch * SUCH DAMAGE.
2423227Swosch *
2550477Speter * $FreeBSD: stable/10/sys/sys/copyright.h 321905 2017-08-02 05:17:47Z delphij $
2623227Swosch */
2723227Swosch
2823227Swosch
2923227Swosch/* Copyrights macros  */
30212148Semaste
3123227Swosch/* FreeBSD */
3223227Swosch#define COPYRIGHT_FreeBSD \
33310967Sbapt	"Copyright (c) 1992-2017 The FreeBSD Project.\n"
3423227Swosch
35162639Srwatson/* Foundation */
36162639Srwatson#define	TRADEMARK_Foundation \
37162639Srwatson	"FreeBSD is a registered trademark of The FreeBSD Foundation.\n"
38162639Srwatson
3923227Swosch/* Berkeley */
4023227Swosch#define COPYRIGHT_UCB \
4162783Sobrien	"Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994\n\tThe Regents of the University of California. All rights reserved.\n"
4223227Swosch
4323227Swosch/* a port of FreeBSD to the NEC PC98, Japan */
44182026Simp#if defined(PC98)
4523227Swosch#define COPYRIGHT_PC98 \
46182003Snyan	"Copyright (c) 1994-2003 FreeBSD(98) porting team.\nCopyright (c) 1992  A.Kojima F.Ukai M.Ishii (KMC).\n"
4723227Swosch#else
48182026Simp#define COPYRIGHT_PC98
49162661Srwatson#endif
50162661Srwatson
51182026Simpchar copyright[] = COPYRIGHT_FreeBSD COPYRIGHT_PC98 COPYRIGHT_UCB;
52162639Srwatsonchar trademark[] = TRADEMARK_Foundation;
53