1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

Merge pull request #2676 from Darredevil/patch-3

unittests/tests-base64: fixed header file include guard
This commit is contained in:
Martine Lenders 2015-03-22 16:22:12 +01:00
commit a6c72e9980

View File

@ -15,8 +15,8 @@
*
* @author Martin Landsmann <Martin.Landsmann@HAW-Hamburg.de>
*/
#ifndef __TESTS_BASE64_H_
#define __TESTS_BASE64_H_
#ifndef TESTS_BASE64_H_
#define TESTS_BASE64_H_
#include "embUnit/embUnit.h"
#ifdef __cplusplus
@ -39,5 +39,5 @@ Test *tests_base64_tests(void);
}
#endif
#endif /* __TESTS_BASE64_H_ */
#endif /* TESTS_BASE64_H_ */
/** @} */