Subversion Repositories SvarDOS

Rev

Rev 421 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
400 mateuszvis 1
/*
2
 * pause
3
 */
4
 
5
 
6
static int cmd_pause(struct cmd_funcparam *p) {
7
  if (cmd_ishlp(p)) {
8
    outputnl("Suspends processing of a batch program");
9
    outputnl("\r\nPAUSE");
10
    return(-1);
11
  }
12
 
13
  press_any_key();
14
  return(-1);
15
}