* Added a dummy replacement for parse_expression().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25226 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-04-28 15:49:18 +00:00
parent c927bf5c49
commit 7829775e8f

View File

@ -848,6 +848,13 @@ atomic_test_and_set(vint32 *value, int32 newValue, int32 testAgainst)
}
extern "C" uint64
parse_expression(const char* arg)
{
return strtoull(arg, NULL, 0);
}
extern "C" int
add_debugger_command(char *name, int (*func)(int, char **), char *desc)
{