Files
rosetta/toolchain/mxdbg/client/breakpoint.c
T

17 lines
260 B
C
Raw Normal View History

#include "command.h"
static int breakpoint(
const struct command *cmd,
struct debug_context *ctx,
int argc,
const char **argv,
void *argp)
{
return 0;
}
const struct command cmd_breakpoint = {
.cmd_name = "breakpoint",
.cmd_callback = breakpoint,
};