diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-04-28 12:22:59 +0200 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-05-07 21:10:46 +0200 |
commit | feab28d68df8aadda62b7964c23537d32a52ee54 (patch) | |
tree | acb4308de87c0aaf9c33776dd755945b78bf21b5 /tests/cmocka-common.h | |
parent | 3cfc33248efc2414e7ee25260da02bb6fe9c20ea (diff) | |
download | gnutls-feab28d68df8aadda62b7964c23537d32a52ee54.tar.gz |
Add or clean header guards in tests/
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'tests/cmocka-common.h')
-rw-r--r-- | tests/cmocka-common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/cmocka-common.h b/tests/cmocka-common.h index 2ac0dfbf9c..3f0c9316c6 100644 --- a/tests/cmocka-common.h +++ b/tests/cmocka-common.h @@ -1,3 +1,6 @@ +#ifndef GNUTLS_TESTS_CMOCKA_COMMON_H +#define GNUTLS_TESTS_CMOCKA_COMMON_H + #include <stddef.h> #include <setjmp.h> #include <cmocka.h> @@ -5,3 +8,5 @@ #define USE_CMOCKA #include "eagain-common.h" + +#endif /* GNUTLS_TESTS_CMOCKA_COMMON_H */ |