diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 11:56:40 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 11:56:40 +0000 |
commit | ab08be91e5dc66cfc42b85763d4caf94e2fd3d09 (patch) | |
tree | 89caace66e8787764cc54b781a8cbfd881b69458 /sys/arch/hp300/dev/acvar.h | |
parent | 75113d46e0ad67778c0741a5bfc96d9d686f7eec (diff) |
Merge portions of NetBSD up to 970415.
This includes:
* All of the prototyping and KNF changes.
* The new interrupt system.
* Portions of the Domain Keyboard support from Mike Smith.
This does not include:
* m68k changes, namely generic dumps.
Various sundry changes and fixes by me.
Diffstat (limited to 'sys/arch/hp300/dev/acvar.h')
-rw-r--r-- | sys/arch/hp300/dev/acvar.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/acvar.h b/sys/arch/hp300/dev/acvar.h index 91d330c36ae..96b622886e9 100644 --- a/sys/arch/hp300/dev/acvar.h +++ b/sys/arch/hp300/dev/acvar.h @@ -1,5 +1,5 @@ -/* $OpenBSD: acvar.h,v 1.3 1997/02/03 04:47:11 downsj Exp $ */ -/* $NetBSD: acvar.h,v 1.3 1997/01/30 09:14:11 thorpej Exp $ */ +/* $OpenBSD: acvar.h,v 1.4 1997/04/16 11:55:56 downsj Exp $ */ +/* $NetBSD: acvar.h,v 1.4 1997/03/31 07:32:15 scottr Exp $ */ /* * Copyright (c) 1991 University of Utah. @@ -87,3 +87,14 @@ struct ac_restatdb { ac_imp:1, /* 1 == user inserted medium (IEE only) */ ac_full:1; /* element contains media */ }; + +#ifdef _KERNEL +int accommand __P((dev_t, int, char *, int)); + +void acstart __P((void *)); +void acgo __P((void *)); +void acintr __P((void *, int)); + +int acgeteinfo __P((dev_t)); +void acconvert __P((char *, char *, int)); +#endif /* _KERNEL */ |