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

unittests/tests-pkt: fixed header file include guard

fixes #2623
This commit is contained in:
Darredevil 2015-03-22 16:39:10 +02:00
parent d5848d687c
commit febf0c1b08

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_pkt(void);
}
#endif
#endif /* __TESTS_PKTBUF_H_ */
#endif /* TESTS_PKTBUF_H_ */
/** @} */