Subversion Repositories SvarDOS

Rev

Rev 380 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 380 Rev 397
1
/*
1
/*
2
 * handler for all "not implemented yet" commands
2
 * handler for all "not implemented yet" commands
3
 */
3
 */
4
 
4
 
5
static int cmd_notimpl(struct cmd_funcparam *p) {
5
static int cmd_notimpl(struct cmd_funcparam *p) {
6
  outputnl("This command is not implemented yet. Sorry!");
6
  outputnl("This command is not implemented yet. Sorry!");
7
  return(-1);
7
  return(-1);
8
}
8
}
9
 
9