git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1385 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
349 B
C
25 lines
349 B
C
/*
|
|
** Copyright 2002, Axel Dörfler, [email protected]. All rights reserved.
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
*/
|
|
|
|
|
|
#include <OS.h>
|
|
#include "syscalls.h"
|
|
|
|
|
|
void
|
|
debugger(const char *message)
|
|
{
|
|
// ToDo: implement debugger()
|
|
}
|
|
|
|
|
|
const int
|
|
disable_debugger(int state)
|
|
{
|
|
// ToDo: implement disable_debugger()
|
|
return 0;
|
|
}
|
|
|