Subversion Repositories SvarDOS

Rev

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

Rev 448 Rev 449
Line 32... Line 32...
32
static int cmd_exit(struct cmd_funcparam *p) {
32
static int cmd_exit(struct cmd_funcparam *p) {
33
  if (cmd_ishlp(p)) {
33
  if (cmd_ishlp(p)) {
34
    outputnl("EXIT\r\n");
34
    outputnl("EXIT\r\n");
35
    outputnl("Quits the COMMAND.COM program (command interpreter)");
35
    outputnl("Quits the COMMAND.COM program (command interpreter)");
36
  } else {
36
  } else {
37
    sayonara(p->rmod_seg);
37
    sayonara(p->rmod);
38
  }
38
  }
39
  return(-1);
39
  return(-1);
40
}
40
}