Deleted Added
full compact
pr.c (54114) pr.c (72091)
1/*-
2 * Copyright (c) 1991 Keith Muller.
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Keith Muller of the University of California, San Diego.
8 *

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

29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
1/*-
2 * Copyright (c) 1991 Keith Muller.
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Keith Muller of the University of California, San Diego.
8 *

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

29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * $FreeBSD: head/usr.bin/pr/pr.c 54114 1999-12-04 03:19:15Z kris $
37 * $FreeBSD: head/usr.bin/pr/pr.c 72091 2001-02-06 11:21:58Z asmodai $
38 */
39
40#ifndef lint
41static char copyright[] =
42"@(#) Copyright (c) 1993\n\
43 The Regents of the University of California. All rights reserved.\n";
44#endif /* not lint */
45

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

61#include <unistd.h>
62
63#include "pr.h"
64#include "extern.h"
65
66/*
67 * pr: a printing and pagination filter. If multiple input files
68 * are specified, each is read, formatted, and written to standard
38 */
39
40#ifndef lint
41static char copyright[] =
42"@(#) Copyright (c) 1993\n\
43 The Regents of the University of California. All rights reserved.\n";
44#endif /* not lint */
45

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

61#include <unistd.h>
62
63#include "pr.h"
64#include "extern.h"
65
66/*
67 * pr: a printing and pagination filter. If multiple input files
68 * are specified, each is read, formatted, and written to standard
69 * output. By default, input is seperated into 66-line pages, each
69 * output. By default, input is separated into 66-line pages, each
70 * with a header that includes the page number, date, time and the
71 * files pathname.
72 *
73 * Complies with posix P1003.2/D11
74 */
75
76/*
77 * parameter variables

--- 1748 unchanged lines hidden ---
70 * with a header that includes the page number, date, time and the
71 * files pathname.
72 *
73 * Complies with posix P1003.2/D11
74 */
75
76/*
77 * parameter variables

--- 1748 unchanged lines hidden ---