Deleted Added
full compact
tset.c (102944) tset.c (200419)
1/*-
2 * Copyright (c) 1980, 1991, 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, 1991, 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/tset/tset.c 102944 2002-09-04 23:29:10Z dwmalone $");
36__FBSDID("$FreeBSD: head/usr.bin/tset/tset.c 200419 2009-12-11 23:30:22Z delphij $");
37
38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1980, 1991, 1993\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif
43
44#ifndef lint
45static const char sccsid[] = "@(#)tset.c 8.1 (Berkeley) 6/9/93";
46#endif
47
48#include <sys/types.h>
49#include <sys/ioctl.h>
50
51#include <ctype.h>
52#include <err.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <string.h>
37
38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1980, 1991, 1993\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif
43
44#ifndef lint
45static const char sccsid[] = "@(#)tset.c 8.1 (Berkeley) 6/9/93";
46#endif
47
48#include <sys/types.h>
49#include <sys/ioctl.h>
50
51#include <ctype.h>
52#include <err.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <string.h>
56#include <termcap.h>
56#include <termios.h>
57#include <unistd.h>
58
59#include "extern.h"
60
61void obsolete(char *[]);
62void report(const char *, int, u_int);
63void usage(void);

--- 237 unchanged lines hidden ---
57#include <termios.h>
58#include <unistd.h>
59
60#include "extern.h"
61
62void obsolete(char *[]);
63void report(const char *, int, u_int);
64void usage(void);

--- 237 unchanged lines hidden ---