Merge pull request #2675 from Darredevil/patch-2

unittests/netdev_dummy: fixed header file include guard
This commit is contained in:
Martine Lenders 2015-03-22 16:20:58 +01:00
commit cdd6ac550a

View File

@ -17,8 +17,8 @@
* @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/ */
#ifndef __UNITTESTS_NETDEV_DUMMY_H_ #ifndef UNITTESTS_NETDEV_DUMMY_H_
#define __UNITTESTS_NETDEV_DUMMY_H_ #define UNITTESTS_NETDEV_DUMMY_H_
#include <stdlib.h> #include <stdlib.h>
@ -153,7 +153,7 @@ void unittest_netdev_dummy_init(void);
} }
#endif #endif
#endif /* __UNITTESTS_NETDEV_DUMMY_H_ */ #endif /* UNITTESTS_NETDEV_DUMMY_H_ */
/** /**
* @} * @}