From 656031b0735e27933d48f30b1c756eb45bc8b516 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sat, 23 Oct 2004 12:31:24 -0400 Subject: make stuff compile on openbsd again clean up a few other things while we're here. base/bitfield.hh: base/compression/null_compression.hh: dont #include use "sim/host.hh" fix #include guard base/stats/types.hh: dont #include use "sim/host.hh" kern/linux/aligned.hh: dont #include use "sim/host.hh" fix #include guard kern/linux/hwrpb.hh: fix #include guard --HG-- extra : convert_revision : 288c687a59a1e770bbb834879173e1a2ea371bce --- base/compression/null_compression.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'base/compression/null_compression.hh') diff --git a/base/compression/null_compression.hh b/base/compression/null_compression.hh index 195498f1b..63364a955 100644 --- a/base/compression/null_compression.hh +++ b/base/compression/null_compression.hh @@ -26,16 +26,16 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __NULL_COMPRESSION_HH__ -#define __NULL_COMPRESSION_HH__ +#ifndef __BASE_COMPRESSION_NULL_COMPRESSION_HH__ +#define __BASE_COMPRESSION_NULL_COMPRESSION_HH__ /** * @file * This file defines a doNothing compression algorithm. */ -#include // for uint8_t #include "base/misc.hh" // for fatal() +#include "sim/host.hh" /** @@ -73,4 +73,4 @@ class NullCompression } }; -#endif //__NULL_COMPRESSION_HH__ +#endif //__BASE_COMPRESSION_NULL_COMPRESSION_HH__ -- cgit v1.2.3