diff options
author | David Robillard <d@drobilla.net> | 2020-10-21 12:23:24 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-21 15:43:29 +0200 |
commit | feb6c4f7952eafbc8c2203ef0c657ea3580ee441 (patch) | |
tree | d67ed34eb9955720fd63b961f9b07ce00f5321a9 /test/test_utils.h | |
parent | 063ddc8db2831e1f79d7569c8fc80dd3d54f5cda (diff) | |
download | pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.tar.gz pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.tar.bz2 pugl-feb6c4f7952eafbc8c2203ef0c657ea3580ee441.zip |
Add missing include guards
Diffstat (limited to 'test/test_utils.h')
-rw-r--r-- | test/test_utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_utils.h b/test/test_utils.h index 6148d84..42b9ef9 100644 --- a/test/test_utils.h +++ b/test/test_utils.h @@ -14,6 +14,9 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#ifndef TEST_TEST_UTILS_H +#define TEST_TEST_UTILS_H + #define __STDC_FORMAT_MACROS 1 #include "pugl/pugl.h" @@ -345,3 +348,5 @@ puglParseTestOptions(int* pargc, char*** pargv) return opts; } + +#endif // TEST_TEST_UTILS_H |