Protect against multiple inclusion.
This commit is contained in:
parent
de6a644cea
commit
8b7cc1c1d2
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: bsd_openprom.h,v 1.4 2002/08/23 01:08:46 thorpej Exp $ */
|
||||
/* $NetBSD: bsd_openprom.h,v 1.5 2002/08/23 02:45:44 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -48,6 +48,9 @@
|
|||
* All rights reserved.
|
||||
*/
|
||||
|
||||
#ifndef _BSD_OPENPROM_H_
|
||||
#define _BSD_OPENPROM_H_
|
||||
|
||||
/*
|
||||
* This file defines the interface between the kernel and the Openboot PROM.
|
||||
* N.B.: this has been tested only on interface versions 0 and 2 (we have
|
||||
|
@ -355,3 +358,5 @@ void romboot __P((char *))
|
|||
__attribute__((__noreturn__));
|
||||
|
||||
extern struct promvec *promvec;
|
||||
|
||||
#endif /* _BSD_OPENPROM_H_ */
|
||||
|
|
Loading…
Reference in New Issue