diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-10-23 12:31:24 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-10-23 12:31:24 -0400 |
commit | 656031b0735e27933d48f30b1c756eb45bc8b516 (patch) | |
tree | 3044aadf98ad7898a213fff77367b3b5c7a2ff7a /kern/linux/hwrpb.hh | |
parent | 224acc2abccec14ab3846f1b3308e642ed094456 (diff) | |
download | gem5-656031b0735e27933d48f30b1c756eb45bc8b516.tar.xz |
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 <inttypes.hh> use "sim/host.hh"
fix #include guard
base/stats/types.hh:
dont #include <inttypes.hh> use "sim/host.hh"
kern/linux/aligned.hh:
dont #include <stdint.hh> use "sim/host.hh"
fix #include guard
kern/linux/hwrpb.hh:
fix #include guard
--HG--
extra : convert_revision : 288c687a59a1e770bbb834879173e1a2ea371bce
Diffstat (limited to 'kern/linux/hwrpb.hh')
-rw-r--r-- | kern/linux/hwrpb.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/linux/hwrpb.hh b/kern/linux/hwrpb.hh index 3ce03efd7..16544f196 100644 --- a/kern/linux/hwrpb.hh +++ b/kern/linux/hwrpb.hh @@ -1,5 +1,5 @@ -#ifndef __ALPHA_HWRPB_H__ -#define __ALPHA_HWRPB_H__ +#ifndef __KERN_LINUX_HWRPB_HH__ +#define __KERN_LINUX_HWRPB_HH__ #include "kern/linux/aligned.hh" @@ -15,4 +15,4 @@ namespace Linux { uint64_ta res1, res2; }; } -#endif /* __ALPHA_HWRPB_H */ +#endif // __KERN_LINUX_HWRPB_HH__ |