No longer use private syscall, but the Debug.h function directly.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12116 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-03-29 15:15:12 +00:00
parent 78924f7e7b
commit 54c5b264e3
+2 -2
View File
@@ -8,10 +8,10 @@
*/
// no dprintf in user space, but if you know the trick ;)
void _kdprintf_(const char *format, ...);
void _sPrintf(const char *format, ...);
//bool set_dprintf_enabled(bool); /* returns old enable flag */
#define dprintf _kdprintf_
#define dprintf _sPrintf
// don't use variables here as this is a static library
// and thus the variables will collide with the main program