1: /* 2: * DM-BB fake driver 3: */ 4: 5: /* 6: * SCCS id @(#)dhfdm.c 2.1 (Berkeley) 8/5/83 7: */ 8: 9: #include <sys/param.h> 10: #include <sys/tty.h> 11: #include <sys/conf.h> 12: 13: struct tty dh11[]; 14: 15: dmopen(dev) 16: { 17: register struct tty *tp; 18: 19: tp = &dh11[minor(dev)]; 20: tp->t_state |= CARR_ON; 21: } 22: 23: dmctl(dev, bits) 24: { 25: }