Deleted Added
full compact
icmp6.c (158161) icmp6.c (175387)
1/*-
2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
35
1/*-
2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
35
36__FBSDID("$FreeBSD: head/usr.bin/systat/icmp6.c 158161 2006-04-30 04:47:23Z bde $");
36__FBSDID("$FreeBSD: head/usr.bin/systat/icmp6.c 175387 2008-01-16 19:27:43Z delphij $");
37
38#ifdef lint
39static char sccsid[] = "@(#)mbufs.c 8.1 (Berkeley) 6/6/93";
40#endif
41
42/* From:
43 "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"
44*/

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

89
90WINDOW *
91openicmp6(void)
92{
93 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
94}
95
96void
37
38#ifdef lint
39static char sccsid[] = "@(#)mbufs.c 8.1 (Berkeley) 6/6/93";
40#endif
41
42/* From:
43 "Id: mbufs.c,v 1.5 1997/02/24 20:59:03 wollman Exp"
44*/

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

89
90WINDOW *
91openicmp6(void)
92{
93 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
94}
95
96void
97closeicmp6(w)
98 WINDOW *w;
97closeicmp6(WINDOW *w)
99{
100 if (w == NULL)
101 return;
102 wclear(w);
103 wrefresh(w);
104 delwin(w);
105}
106

--- 177 unchanged lines hidden ---
98{
99 if (w == NULL)
100 return;
101 wclear(w);
102 wrefresh(w);
103 delwin(w);
104}
105

--- 177 unchanged lines hidden ---