diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 17:44:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 17:44:56 +0000 |
commit | 7dde74bdd695964419f148702edb402ef00b2a48 (patch) | |
tree | b2e622a0291c167b7334ac202e33d32c72504e8f /sys/arch/hppa | |
parent | d93e1f2a78078a7e701b7c003921e4da343140fa (diff) |
add PDC routines (including console) prototypes
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/include/pdc.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/pdc.h b/sys/arch/hppa/include/pdc.h index 027cabe8967..bdc6e8e6128 100644 --- a/sys/arch/hppa/include/pdc.h +++ b/sys/arch/hppa/include/pdc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.h,v 1.3 1998/07/08 21:33:42 mickey Exp $ */ +/* $OpenBSD: pdc.h,v 1.4 1998/07/14 17:44:55 mickey Exp $ */ /* * Copyright (c) 1990 mt Xinu, Inc. All rights reserved. @@ -461,6 +461,17 @@ struct pz_device { extern pdcio_t pdc; +#ifdef _KERNEL +struct consdev; + +void init_pdc __P((void)); +void pdc_probe __P((struct consdev *)); +void pdc_init __P((struct consdev *)); +int pdc_getc __P((dev_t)); +void pdc_putc __P((dev_t, int)); +void pdc_pollc __P((dev_t, int)); +#endif + #endif /* !(_LOCORE) */ #endif /* _HPPA_PDC_H_ */ |