diff options
author | bde <bde@FreeBSD.org> | 1995-11-04 13:25:33 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-04 13:25:33 +0000 |
commit | 336a6f070b228b59f25b26ea4de3ac0ff1c7160f (patch) | |
tree | 6f35ae0e7caade790223565873d04a0f034c5822 /sys/kern/tty_pty.c | |
parent | 246c28b0f93b97b2c3c8dd1984ec68e01343a509 (diff) | |
download | FreeBSD-src-336a6f070b228b59f25b26ea4de3ac0ff1c7160f.zip FreeBSD-src-336a6f070b228b59f25b26ea4de3ac0ff1c7160f.tar.gz |
Moved prototypes for devswitch functions from conf.c and driver sources
to <machine/conf.h>. conf.h was mechanically generated by
`grep ^d_ conf.c >conf.h'. This accounts for part of its ugliness. The
prototypes should be moved back to the driver sources when the functions
are staticalized.
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r-- | sys/kern/tty_pty.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index a13cb0a..2baaea2 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_pty.c 8.2 (Berkeley) 9/23/93 - * $Id: tty_pty.c,v 1.22 1995/10/25 18:23:58 bde Exp $ + * $Id: tty_pty.c,v 1.23 1995/10/30 17:16:55 bde Exp $ */ /* @@ -82,8 +82,6 @@ int npty = NPTY; /* for pstat -t */ #define PF_NOSTOP 0x40 #define PF_UCNTL 0x80 /* user control mode */ -void ptsstop __P((struct tty *, int)); - /* * Establish n (or default if n is 1) ptys in the system. * |