Files

17 lines
260 B
C

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