1diffstat:
2
3/******************************************************************************
4 * Copyright 1994-2008,2009 by Thomas E. Dickey                               *
5 * All Rights Reserved.                                                       *
6 *                                                                            *
7 * Permission to use, copy, modify, and distribute this software and its      *
8 * documentation for any purpose and without fee is hereby granted, provided  *
9 * that the above copyright notice appear in all copies and that both that    *
10 * copyright notice and this permission notice appear in supporting           *
11 * documentation, and that the name of the above listed copyright holder(s)   *
12 * not be used in advertising or publicity pertaining to distribution of the  *
13 * software without specific, written prior permission.                       *
14 *                                                                            *
15 * THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD   *
16 * TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND  *
17 * FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE  *
18 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES          *
19 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN      *
20 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR *
21 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.                *
22 ******************************************************************************/
23
24patch:
25
26/*
27 * patch - a program to apply diffs to original files
28 * 
29 * Copyright 1986, Larry Wall
30 * 
31 * Redistribution and use in source and binary forms, with or without
32 * modification, are permitted provided that the following condition is met:
33 * 1. Redistributions of source code must retain the above copyright notice,
34 * this condition and the following disclaimer.
35 * 
36 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
37 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
38 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
40 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
42 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
43 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
44 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
45 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46 * SUCH DAMAGE.
47 * 
48 * -C option added in 1998, original code by Marc Espie, based on FreeBSD
49 * behaviour
50 */
51