Deleted Added
full compact
output.c (97909) output.c (99110)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
40#endif
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
40#endif
41static const char rcsid[] =
42 "$FreeBSD: head/bin/sh/output.c 97909 2002-06-06 03:29:23Z tjr $";
43#endif /* not lint */
41#endif /* not lint */
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: head/bin/sh/output.c 99110 2002-06-30 05:15:05Z obrien $");
44
45/*
46 * Shell output routines. We use our own output routines because:
47 * When a builtin command is interrupted we have to discard
48 * any pending output.
49 * When a builtin command appears in back quotes, we want to
50 * save the output of the command in a region obtained
51 * via malloc, rather than doing a fork and reading the

--- 443 unchanged lines hidden ---
44
45/*
46 * Shell output routines. We use our own output routines because:
47 * When a builtin command is interrupted we have to discard
48 * any pending output.
49 * When a builtin command appears in back quotes, we want to
50 * save the output of the command in a region obtained
51 * via malloc, rather than doing a fork and reading the

--- 443 unchanged lines hidden ---