diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-12 21:39:02 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-08-12 21:39:02 +0000 |
commit | 4708586154f2a20011f7d764fe9ff7f558defd91 (patch) | |
tree | 23aae33ce931a2eaaf6a7694b526ee7d00c55e98 /sys/arch/i386/stand/libsa/biosdev.h | |
parent | 084e3f66981ce7370c130880353703d2afb3321f (diff) |
new cons
do inline BIOS calls
Diffstat (limited to 'sys/arch/i386/stand/libsa/biosdev.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/biosdev.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/sys/arch/i386/stand/libsa/biosdev.h b/sys/arch/i386/stand/libsa/biosdev.h index e78a4032403..bbb6ad4f32f 100644 --- a/sys/arch/i386/stand/libsa/biosdev.h +++ b/sys/arch/i386/stand/libsa/biosdev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biosdev.h,v 1.14 1997/08/12 19:24:58 mickey Exp $ */ +/* $OpenBSD: biosdev.h,v 1.15 1997/08/12 21:39:01 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -40,24 +40,6 @@ int biosopen __P((struct open_file *, ...)); int biosclose __P((struct open_file *)); int biosioctl __P((struct open_file *, u_long, void *)); -/* bioskbd.S */ -int kbd_probe __P((void)); -void kbd_putc __P((int c)); -int kbd_getc __P((void)); -int kbd_ischar __P((void)); - -/* bioscom.S */ -#define COM_PROTO(n) \ -int com##n##_probe __P((void)); \ -void com##n##_putc __P((int c)); \ -int com##n##_getc __P((void)); \ -int com##n##_ischar __P((void)); -COM_PROTO(0) -COM_PROTO(1) -COM_PROTO(2) -COM_PROTO(3) -#undef COM_PROTO - /* time.c */ void time_print __P((void)); time_t getsecs __P((void)); |