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;
|
||
|
|
}
|
||
|
|
|