diff options
| author | agc <agc@NetBSD.org> | 2003-08-07 11:13:06 +0000 |
|---|---|---|
| committer | agc <agc@NetBSD.org> | 2003-08-07 11:13:06 +0000 |
| commit | 89aaa1bb64ba8db54daf131749fe578e804d9382 (patch) | |
| tree | 57ca36a9ec77286fc0094f173063d9b41f7f765b /usr.bin/make/parse.c | |
| parent | 075022b349321510ad14036d70908681ed02f117 (diff) | |
Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22365, verified by myself.
Diffstat (limited to 'usr.bin/make/parse.c')
| -rw-r--r-- | usr.bin/make/parse.c | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index e36ce26d1c1..02ace5687c2 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,8 +1,38 @@ -/* $NetBSD: parse.c,v 1.93 2003/07/14 18:19:13 christos Exp $ */ +/* $NetBSD: parse.c,v 1.94 2003/08/07 11:14:56 agc Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Adam de Boor. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +/* * Copyright (c) 1989 by Berkeley Softworks * All rights reserved. * @@ -39,14 +69,14 @@ */ #ifdef MAKE_BOOTSTRAP -static char rcsid[] = "$NetBSD: parse.c,v 1.93 2003/07/14 18:19:13 christos Exp $"; +static char rcsid[] = "$NetBSD: parse.c,v 1.94 2003/08/07 11:14:56 agc Exp $"; #else #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: parse.c,v 1.93 2003/07/14 18:19:13 christos Exp $"); +__RCSID("$NetBSD: parse.c,v 1.94 2003/08/07 11:14:56 agc Exp $"); #endif #endif /* not lint */ #endif |
