home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / libcruft / misc / xstopx.f < prev   
Text File  |  1996-09-28  |  256b  |  10 lines

  1.       subroutine xstopx (string)
  2.       character *(*) string
  3.       integer slen
  4.       slen = len (string)
  5.       if (slen .eq. 0) goto 9999
  6.       if (slen .eq. 1 .and. string(1:1) .eq. ' ') goto 9999
  7.       write (*, *) string
  8.  9999 call dostop ()
  9.       end
  10.