 #------------------------------------------------------------------
 ## preprocessor common block to hold output characters
 # put on a file named 'coutln'
 # Used only by ratfiv preprocessor
 
 common /coutln/ outp, indent, outbuf(MAXLINE)
  integer outp          # last position filled in outbuf; init = 0
  integer indent	# current indent level (tab position)
  character outbuf      # output lines collected here
 #------------------------------------------------------------------
