Deleted Added
full compact
error.c (75577) error.c (78732)
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)error.c 8.2 (Berkeley) 5/4/95";
40#endif
41static const char rcsid[] =
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

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

34 * SUCH DAMAGE.
35 */
36
37#ifndef lint
38#if 0
39static char sccsid[] = "@(#)error.c 8.2 (Berkeley) 5/4/95";
40#endif
41static const char rcsid[] =
42 "$FreeBSD: head/bin/sh/error.c 75577 2001-04-17 07:46:38Z kris $";
42 "$FreeBSD: head/bin/sh/error.c 78732 2001-06-24 23:04:23Z dd $";
43#endif /* not lint */
44
45/*
46 * Errors and exceptions.
47 */
48
49#include "shell.h"
50#include "main.h"
51#include "options.h"
52#include "output.h"
53#include "error.h"
54#include "nodes.h" /* show.h needs nodes.h */
55#include "show.h"
56#include "trap.h"
57#include <signal.h>
43#endif /* not lint */
44
45/*
46 * Errors and exceptions.
47 */
48
49#include "shell.h"
50#include "main.h"
51#include "options.h"
52#include "output.h"
53#include "error.h"
54#include "nodes.h" /* show.h needs nodes.h */
55#include "show.h"
56#include "trap.h"
57#include <signal.h>
58#include <stdlib.h>
58#include <unistd.h>
59#include <errno.h>
60
61
62/*
63 * Code to handle exceptions in C.
64 */
65

--- 241 unchanged lines hidden ---
59#include <unistd.h>
60#include <errno.h>
61
62
63/*
64 * Code to handle exceptions in C.
65 */
66

--- 241 unchanged lines hidden ---