1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2678 from Darredevil/patch-6

unittests/tests-netdev_dummy: fixed header file include guard
This commit is contained in:
Martine Lenders 2015-03-22 16:22:36 +01:00
commit 5551a1beee

View File

@ -15,8 +15,8 @@
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef __TESTS_NETDEV_DUMMY_H_
#define __TESTS_NETDEV_DUMMY_H_
#ifndef TESTS_NETDEV_DUMMY_H_
#define TESTS_NETDEV_DUMMY_H_
#include "embUnit.h"
@ -33,5 +33,5 @@ void tests_netdev_dummy(void);
}
#endif
#endif /* __TESTS_NETDEV_DUMMY_H_ */
#endif /* TESTS_NETDEV_DUMMY_H_ */
/** @} */