blob: 8110a2a26296711b117c96d24d94e2e43c680f66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $NetBSD: dc_cons.h,v 1.1 1996/10/13 03:42:17 jonathan Exp $ */
#ifdef _KERNEL
#ifndef _DC_CONS_H
#define _DC_CONS_H
/*
* Following declaratios for console code.
* XXX should be redesigned to expose less driver internals.
*/
void dc_consinit __P((dev_t dev, dcregs *dcaddr));
extern int dcGetc __P ((dev_t dev));
extern int dcparam __P((register struct tty *tp, register struct termios *t));
extern void dcPutc __P((dev_t dev, int c));
#endif /* _DCVAR_H */
#endif /* _KERNEL */
|