2.11BSD/sys/OTHERS/dm11/dhfdm.c

Compare this file to the similar file:
Show the results in this format:

/*
 *	DM-BB fake driver
 */

/*
 *	SCCS id	@(#)dhfdm.c	2.1	(Berkeley)	8/5/83
 */

#include "param.h"
#include "tty.h"
#include "conf.h"

struct	tty	dh11[];

dmopen(dev)
{
	register struct tty *tp;

	tp = &dh11[minor(dev)];
	tp->t_state |= CARR_ON;
}

dmctl(dev, bits)
{
}