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

16 lines
214 B
C
Raw Normal View History

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