Files
Arquivotheca.SunOS-4.1.4/sys/sundev/zs_conf.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

31 lines
559 B
C

#ifndef lint
static char sccsid[] = "@(#)zs_conf.c 1.1 94/10/31 SMI";
#endif
#include "zs.h"
#include <sys/types.h>
#include <sys/stream.h>
#include <sys/ttycom.h>
#include <sys/tty.h>
#include <sundev/zsreg.h>
#include <sundev/zscom.h>
#include <machine/param.h> /* for OPENPROMS, if present */
#ifdef OPENPROMS
char *zssoftCAR;
int nzs = 0;
struct zscom *zscom;
struct zsaline *zsaline;
#else OPENPROMS
#define NZSLINE (NZS*2)
char zssoftCAR[NZSLINE];
int nzs = NZSLINE;
struct zscom zscom[NZSLINE];
struct zsaline zsaline[NZSLINE];
#endif OPENPROMS