diff options
author | 2000-03-08 22:13:23 +0000 | |
---|---|---|
committer | 2000-03-08 22:13:23 +0000 | |
commit | 0f1b51135707f4afd75df8dc07b73369af88749c (patch) | |
tree | 075d428bfbf6d98c121b8edd5af83d7a8ccddd58 | |
parent | Merge with EOM 1.48 (diff) | |
download | wireguard-openbsd-0f1b51135707f4afd75df8dc07b73369af88749c.tar.xz wireguard-openbsd-0f1b51135707f4afd75df8dc07b73369af88749c.zip |
multiple inclusion protect because of pstat and socket.h needing ALIGNBYTES
-rw-r--r-- | sys/arch/sparc/include/param.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/sparc/include/param.h b/sys/arch/sparc/include/param.h index 1fe8ded1d35..08894b43793 100644 --- a/sys/arch/sparc/include/param.h +++ b/sys/arch/sparc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.14 2000/02/22 19:27:59 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.15 2000/03/08 22:13:23 deraadt Exp $ */ /* $NetBSD: param.h,v 1.29 1997/03/10 22:50:37 pk Exp $ */ /* @@ -44,6 +44,10 @@ * * @(#)param.h 8.1 (Berkeley) 6/11/93 */ + +#ifndef _SPARC_PARAM_H_ +#define _SPARC_PARAM_H_ + /* * Sun4M support by Aaron Brown, Harvard University. * Changes Copyright (c) 1995 The President and Fellows of Harvard College. @@ -296,3 +300,5 @@ extern int mmumod; # define PGOFSET pgofset # define PGSHIFT pgshift #endif + +#endif /* _SPARC_PARAM_H_ */ |