16 lines
214 B
C
16 lines
214 B
C
|
|
#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,
|
||
|
|
};
|