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

unittests/tests-netif: fixed header file include guard

fixes #2623
This commit is contained in:
Darredevil 2015-03-22 16:33:36 +02:00
parent d5848d687c
commit 138f25811c

View File

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