home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / SORT2.ZIP / STDINHDR.INC < prev    next >
Encoding:
Text File  |  1993-01-04  |  325 b   |  9 lines

  1. { If input is desired from standard input at random intervals, tell the user
  2.   when it is his turn to go. }
  3.  
  4. procedure stdinhdr; begin
  5.    if isatty(0) then begin
  6.       assign(fe,'CON'); rewrite(fe); writeln(fe,' ',pname,
  7. ': Entered lines to be sorted.  Terminate entry with control-Z.' );
  8.       close(fe); end; end;
  9.