diff options
| author | 2009-07-12 20:07:53 +0000 | |
|---|---|---|
| committer | 2009-07-12 20:07:53 +0000 | |
| commit | 9afd8466ca4b7a6552c35e4f15d544aea5abbb85 (patch) | |
| tree | ab06d188db579159fb775f30c473b617786a6272 /sys/arch/sparc | |
| parent | Enable gem@sbus. (diff) | |
| download | wireguard-openbsd-9afd8466ca4b7a6552c35e4f15d544aea5abbb85.tar.xz wireguard-openbsd-9afd8466ca4b7a6552c35e4f15d544aea5abbb85.zip | |
Add protection against multiple inclusion.
ok miod@
Diffstat (limited to 'sys/arch/sparc')
| -rw-r--r-- | sys/arch/sparc/include/autoconf.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/autoconf.h b/sys/arch/sparc/include/autoconf.h index 7e2a690d1af..af812cebb7f 100644 --- a/sys/arch/sparc/include/autoconf.h +++ b/sys/arch/sparc/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.16 2007/05/04 03:44:44 deraadt Exp $ */ +/* $OpenBSD: autoconf.h,v 1.17 2009/07/12 20:07:53 kettenis Exp $ */ /* $NetBSD: autoconf.h,v 1.20 1997/05/24 20:03:03 pk Exp $ */ /* @@ -45,6 +45,9 @@ * Autoconfiguration information. */ +#ifndef _MACHINE_AUTOCONF_H_ +#define _MACHINE_AUTOCONF_H_ + /* * Most devices are configured according to information kept in * the FORTH PROMs. In particular, we extract the `name', `reg', @@ -201,3 +204,5 @@ int findroot(void); int findnode(int, const char *); int opennode(char *); int node_has_property(int, const char *); + +#endif /* _MACHINE_AUTOCONF_H_ */ |
