Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 375 → Rev 376

/svarcom/cmd/exit.c
7,10 → 7,8
 
static int cmd_exit(struct cmd_funcparam *p) {
if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
output("EXIT\r\n"
"\r\n"
"Quits the COMMAND.COM program (command interpreter)\r\n"
"\r\n");
outputnl("EXIT\r\n");
outputnl("Quits the COMMAND.COM program (command interpreter)");
} else {
exit(0);
}
/svarcom/cmd/prompt.c
9,8 → 9,7
if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
output("Changes the DOS command prompt.\r\n"
"\r\n"
"PROMPT [new command prompt specification]\r\n"
"\r\n");
"PROMPT [new command prompt specification]\r\n");
return(-1);
}