additional cstart command (working patch)

It is often wanted to start the program and stop at the first COBOL statement, this is what cstart is about.

define cstart
  set pagination off
  start
  cstep
  set pagination on
end
document cstart
  Start the debugged program stopping at the beginning of the first COBOL statement.
end

Note, if cstep (#25 (closed)) is not available replace it by

 advance cob_trace_stmt
 finish