diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-01-13 11:44:09 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-01-13 11:44:09 -0500 |
commit | d6cae04b54c1d58223e1719101b7c54d348e8d80 (patch) | |
tree | 0d19c6b3f96dc8bfbfb3c54658e3798aa1572ada /tests | |
parent | a9c9fc392bf2c3803251e5f63c944cd221a1ca67 (diff) | |
download | bfs-d6cae04b54c1d58223e1719101b7c54d348e8d80.tar.xz |
tests.h: Add a header guard
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/tests.h b/tests/tests.h index 34c58b7..d2f3611 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -5,6 +5,9 @@ * Unit tests. */ +#ifndef BFS_TESTS_H +#define BFS_TESTS_H + #include "../src/config.h" /** Unit test function type. */ @@ -24,3 +27,5 @@ bool check_trie(void); /** Time tests. */ bool check_xtime(void); + +#endif // BFS_TESTS_H |