diff options
author | bd <bdunahu@operationnull.com> | 2025-04-23 00:22:24 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-23 00:22:24 -0400 |
commit | 3c9d94fcd5592a86279494e919a2261757f4e4f3 (patch) | |
tree | cc3011acc6e2ae7c7571280b818004ae315f19ac | |
parent | e5a4812b685960cdd562bbaf2406c4ce03dceeb0 (diff) |
Add include guards to C11 test
-rw-r--r-- | tests/c11.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/c11.h b/tests/c11.h index e5599db..c2ec76e 100644 --- a/tests/c11.h +++ b/tests/c11.h @@ -1,3 +1,6 @@ +#ifndef C11_H +#define C11_HH + #include "cache.h" #include "dram.h" #include "storage.h" @@ -52,3 +55,5 @@ class C11 std::array<signed int, LINE_SIZE> expected; std::array<signed int, LINE_SIZE> actual; }; + +#endif /* C11_H_INCLUDED */ |