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:
Ingo Weinhold 2005-01-15 21:49:59 +00:00
parent 2d36bfd683
commit 54dd704038
1 changed files with 8 additions and 1 deletions

View File

@ -10,7 +10,14 @@
#endif #endif
#include <stdio.h> #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: // Short overview over the debug output macros:
// PRINT() // PRINT()