Protect against multiple inclusion.

This commit is contained in:
thorpej 2004-08-19 17:56:57 +00:00
parent 80c0e76172
commit 65193a3b71
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pciidevar.h,v 1.22 2004/08/14 15:08:06 thorpej Exp $ */
/* $NetBSD: pciidevar.h,v 1.23 2004/08/19 17:56:57 thorpej Exp $ */
/*
* Copyright (c) 1998 Christopher G. Demetriou. All rights reserved.
@ -30,6 +30,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _DEV_PCI_PCIIDEVAR_H_
#define _DEV_PCI_PCIIDEVAR_H_
/*
* PCI IDE driver exported software structures.
*
@ -227,3 +230,5 @@ void pciide_map_compat_intr __P(( struct pci_attach_args *,
struct pciide_channel *, int));
int pciide_compat_intr __P((void *));
int pciide_pci_intr __P((void *));
#endif /* _DEV_PCI_PCIIDEVAR_H_ */