Deleted Added
full compact
col.c (87242) col.c (87628)
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Michael Rendell of the Memorial University of Newfoundland.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
1/*-
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Michael Rendell of the Memorial University of Newfoundland.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
38
39__FBSDID("$FreeBSD: head/usr.bin/col/col.c 87242 2001-12-02 23:34:16Z markm $");
40
41#ifndef lint
42static const char copyright[] =
43"@(#) Copyright (c) 1990, 1993, 1994\n\
44 The Regents of the University of California. All rights reserved.\n";
45#endif
46
37#ifndef lint
38static const char copyright[] =
39"@(#) Copyright (c) 1990, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif
42
43#if 0
47#ifndef lint
44#ifndef lint
48static const char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95";
45static char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95";
49#endif
46#endif
47#endif
50
48
49#include <sys/cdefs.h>
50__FBSDID("$FreeBSD: head/usr.bin/col/col.c 87628 2001-12-10 21:13:08Z dwmalone $");
51
51#include <ctype.h>
52#include <err.h>
53#include <string.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <unistd.h>
57#include <locale.h>
58

--- 483 unchanged lines hidden ---
52#include <ctype.h>
53#include <err.h>
54#include <string.h>
55#include <stdio.h>
56#include <stdlib.h>
57#include <unistd.h>
58#include <locale.h>
59

--- 483 unchanged lines hidden ---