xref: /dragonfly/contrib/nvi2/regex/COPYRIGHT (revision e0b8e63e)
1*e0b8e63eSJohn MarinoCopyright 1992, 1993, 1994 Henry Spencer.  All rights reserved.
2*e0b8e63eSJohn MarinoThis software is not subject to any license of the American Telephone
3*e0b8e63eSJohn Marinoand Telegraph Company or of the Regents of the University of California.
4*e0b8e63eSJohn Marino
5*e0b8e63eSJohn MarinoPermission is granted to anyone to use this software for any purpose on
6*e0b8e63eSJohn Marinoany computer system, and to alter it and redistribute it, subject
7*e0b8e63eSJohn Marinoto the following restrictions:
8*e0b8e63eSJohn Marino
9*e0b8e63eSJohn Marino1. The author is not responsible for the consequences of use of this
10*e0b8e63eSJohn Marino   software, no matter how awful, even if they arise from flaws in it.
11*e0b8e63eSJohn Marino
12*e0b8e63eSJohn Marino2. The origin of this software must not be misrepresented, either by
13*e0b8e63eSJohn Marino   explicit claim or by omission.  Since few users ever read sources,
14*e0b8e63eSJohn Marino   credits must appear in the documentation.
15*e0b8e63eSJohn Marino
16*e0b8e63eSJohn Marino3. Altered versions must be plainly marked as such, and must not be
17*e0b8e63eSJohn Marino   misrepresented as being the original software.  Since few users
18*e0b8e63eSJohn Marino   ever read sources, credits must appear in the documentation.
19*e0b8e63eSJohn Marino
20*e0b8e63eSJohn Marino4. This notice may not be removed or altered.
21*e0b8e63eSJohn Marino
22*e0b8e63eSJohn Marino=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
23*e0b8e63eSJohn Marino/*-
24*e0b8e63eSJohn Marino * Copyright (c) 1994
25*e0b8e63eSJohn Marino *	The Regents of the University of California.  All rights reserved.
26*e0b8e63eSJohn Marino *
27*e0b8e63eSJohn Marino * Redistribution and use in source and binary forms, with or without
28*e0b8e63eSJohn Marino * modification, are permitted provided that the following conditions
29*e0b8e63eSJohn Marino * are met:
30*e0b8e63eSJohn Marino * 1. Redistributions of source code must retain the above copyright
31*e0b8e63eSJohn Marino *    notice, this list of conditions and the following disclaimer.
32*e0b8e63eSJohn Marino * 2. Redistributions in binary form must reproduce the above copyright
33*e0b8e63eSJohn Marino *    notice, this list of conditions and the following disclaimer in the
34*e0b8e63eSJohn Marino *    documentation and/or other materials provided with the distribution.
35*e0b8e63eSJohn Marino * 3. Neither the name of the University nor the names of its contributors
36*e0b8e63eSJohn Marino *    may be used to endorse or promote products derived from this software
37*e0b8e63eSJohn Marino *    without specific prior written permission.
38*e0b8e63eSJohn Marino *
39*e0b8e63eSJohn Marino * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
40*e0b8e63eSJohn Marino * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41*e0b8e63eSJohn Marino * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
42*e0b8e63eSJohn Marino * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
43*e0b8e63eSJohn Marino * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
44*e0b8e63eSJohn Marino * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
45*e0b8e63eSJohn Marino * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46*e0b8e63eSJohn Marino * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
47*e0b8e63eSJohn Marino * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48*e0b8e63eSJohn Marino * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49*e0b8e63eSJohn Marino * SUCH DAMAGE.
50*e0b8e63eSJohn Marino *
51*e0b8e63eSJohn Marino *	@(#)COPYRIGHT	8.1 (Berkeley) 3/16/94
52*e0b8e63eSJohn Marino */
53