Added support for the DEBUG_PRINTF macro.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10764 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
2d36bfd683
commit
54dd704038
@ -10,7 +10,14 @@
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#define __out printf
|
||||
|
||||
#include <OS.h>
|
||||
|
||||
#ifdef DEBUG_PRINTF
|
||||
#define __out DEBUG_PRINTF
|
||||
#else
|
||||
#define __out printf
|
||||
#endif
|
||||
|
||||
// Short overview over the debug output macros:
|
||||
// PRINT()
|
||||
|
Loading…
Reference in New Issue
Block a user