1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 00:11:16 +01:00

Merge pull request #2677 from Darredevil/patch-5

unittests/tests-crypto: fixed header file include guard
This commit is contained in:
Martine Lenders 2015-03-22 16:22:24 +01:00
commit 1df1ecc6cb

View File

@ -15,8 +15,8 @@
*
* @author Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
*/
#ifndef __TESTS_CRYPTO_H_
#define __TESTS_CRYPTO_H_
#ifndef TESTS_CRYPTO_H_
#define TESTS_CRYPTO_H_
#include "embUnit.h"
@ -40,5 +40,5 @@ Test *tests_crypto_sha256_tests(void);
}
#endif
#endif /* __TESTS_CRYPTO_H_ */
#endif /* TESTS_CRYPTO_H_ */
/** @} */