31 lines
486 B
C
31 lines
486 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)tty_ptyconf.c 1.1 92/07/30 SMI";
|
|
#endif
|
|
|
|
/*
|
|
* Copyright (c) 1987 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
/*
|
|
* Pseudo-terminal driver.
|
|
*
|
|
* Configuration dependent variables
|
|
*/
|
|
|
|
#include "pty.h"
|
|
#include <sys/param.h>
|
|
#include <sys/termios.h>
|
|
#include <sys/stropts.h>
|
|
#include <sys/stream.h>
|
|
#include <sys/tty.h>
|
|
#include <sys/ptyvar.h>
|
|
|
|
#if NPTY == 1
|
|
#undef NPTY
|
|
#define NPTY 48 /* crude XXX */
|
|
#endif
|
|
|
|
int npty = NPTY;
|
|
|
|
struct pty pty_softc[NPTY];
|