Deleted Added
full compact
tty_compat.c (130840) tty_compat.c (130892)
1/*-
2 * Copyright (c) 1982, 1986, 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

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

25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tty_compat.c 8.1 (Berkeley) 6/10/93
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 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

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

25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tty_compat.c 8.1 (Berkeley) 6/10/93
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/kern/tty_compat.c 130840 2004-06-21 12:28:56Z phk $");
33__FBSDID("$FreeBSD: head/sys/kern/tty_compat.c 130892 2004-06-21 22:57:16Z phk $");
34
35#include "opt_compat.h"
36
34
35#include "opt_compat.h"
36
37#ifndef BURN_BRIDGES
37/*
38 * mapping routines for old line discipline (yuck)
39 */
40#if defined(COMPAT_43)
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/ioctl_compat.h>

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

466 oflag |= OPOST;
467 }
468 t->c_iflag = iflag;
469 t->c_oflag = oflag;
470 t->c_lflag = lflag;
471 t->c_cflag = cflag;
472}
473#endif /* COMPAT_43 */
38/*
39 * mapping routines for old line discipline (yuck)
40 */
41#if defined(COMPAT_43)
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/ioctl_compat.h>

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

467 oflag |= OPOST;
468 }
469 t->c_iflag = iflag;
470 t->c_oflag = oflag;
471 t->c_lflag = lflag;
472 t->c_cflag = cflag;
473}
474#endif /* COMPAT_43 */
475
476#endif /* BURN_BRIDGES */