4b0f110028
* Add cast to hardclock when it's used directly as an interrupt handler. * Add a null-interrupt-establish function, to avoid int vs void lint in pica/dev/dma.c. * fix include in pica/include/pccons.h to work with "standard" kernel-compile include path.
19 lines
386 B
C
19 lines
386 B
C
/* $NetBSD: pccons.h,v 1.2 1996/03/28 12:27:28 jonathan Exp $ */
|
|
|
|
/*
|
|
* pccons.h -- pccons ioctl definitions
|
|
*/
|
|
|
|
#ifndef _PCCONS_H_
|
|
#define _PCCONS_H_
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
#define CONSOLE_X_MODE_ON _IO('t',121)
|
|
#define CONSOLE_X_MODE_OFF _IO('t',122)
|
|
#define CONSOLE_X_BELL _IOW('t',123,int[2])
|
|
#define CONSOLE_SET_TYPEMATIC_RATE _IOW('t',124,u_char)
|
|
|
|
#endif /* _PCCONS_H_ */
|