Subversion Repositories SvarDOS

Rev

Rev 372 | Rev 387 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
 * exit
 *
 * Quits the COMMAND.COM program (command interpreter)
 *
 */

static int cmd_exit(struct cmd_funcparam *p) {
  if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
    outputnl("EXIT\r\n");
    outputnl("Quits the COMMAND.COM program (command interpreter)");
  } else {
    exit(0);
  }
  return(-1);
}