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

prevent double include of debug.h

This commit is contained in:
Christian Mehlis 2013-06-09 18:02:30 +02:00
parent 42063530c0
commit b41fd19216

View File

@ -16,6 +16,9 @@
* @}
*/
#ifndef DEBUG_H_
#define DEBUG_H_
#include <stdio.h>
#ifdef ENABLE_DEBUG
@ -23,3 +26,5 @@
#else
#define DEBUG(...)
#endif
#endif /* DEGUG_H_ */