Subversion Repositories SvarDOS

Rev

Rev 421 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 421 Rev 533
Line 24... Line 24...
24
 
24
 
25
/*
25
/*
26
 * handler for all "not implemented yet" commands
26
 * handler for all "not implemented yet" commands
27
 */
27
 */
28
 
28
 
29
static int cmd_notimpl(struct cmd_funcparam *p) {
29
static enum cmd_result cmd_notimpl(struct cmd_funcparam *p) {
30
  outputnl("This command is not implemented yet. Sorry!");
30
  outputnl("This command is not implemented yet. Sorry!");
31
  return(-1);
31
  return(CMD_FAIL);
32
}
32
}