home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / unix / ultrix / 8185 < prev    next >
Encoding:
Text File  |  1992-11-09  |  1.2 KB  |  39 lines

  1. Newsgroups: comp.unix.ultrix
  2. Path: sparky!uunet!ukma!darwin.sura.net!spool.mu.edu!news.nd.edu!mentor.cc.purdue.edu!gimli.bio.purdue.edu!mckay
  3. From: mckay@gimli.bio.purdue.edu (Dwight McKay)
  4. Subject: Does the current release of DEC Fortran for RISC fix this?
  5. Message-ID: <BxGvqs.2Fx@mentor.cc.purdue.edu>
  6. Keywords: F77 fortran risc
  7. Sender: news@mentor.cc.purdue.edu (USENET News)
  8. Reply-To: mckay@gimli.bio.purdue.edu (Dwight McKay)
  9. Organization: Department of Biological Science, Purdue University
  10. Date: Mon, 9 Nov 1992 21:01:38 GMT
  11. Lines: 26
  12.  
  13. The following program is not compilable under DEC Fortran for RISC version 3.0.
  14. It compiles and runs just fine under every other version of Fortran I had
  15. available to test (VMS fortran, Sun fortran).
  16.  
  17. Does anyone know if this program can be compiled under a more recent version
  18. of DEC Fortran?
  19.  
  20. What's the current recommended version of DEC Fortran? (if there is such a
  21. thing)
  22.  
  23. -- the program --
  24.       Parameter(N=3)
  25.       Real C(N)
  26.       Call B(C,N)
  27.       Stop
  28.       End
  29.       Subroutine A(D)
  30.       Real C(N)
  31.       Entry B(C,N)
  32.       Write(6,*)' Hi there'
  33.       Return
  34.       End
  35. --
  36. --Dwight D. McKay, Purdue University, Department of Biological Sciences
  37. --Office: LILY B-145, Phone: (317) 494-4481
  38. --mckay@gimli.bio.purdue.edu
  39.