From: Rick K. <rk...@nc...> - 2006-01-28 01:26:26
|
On Fri, 27 Jan 2006, Haoqiang H. Jin wrote: > You probably placed > INCLUDE 'fperfsuite.h' (or similar) > before > IMPLICIT DOUBLE PRECISION(A-H,O-Z) > > This is not allowed in Fortran. Try something like: > > IMPLICIT DOUBLE PRECISION(A-H,O-Z) > INCLUDE 'fperfsuite.h' > Thanks, Henry! Looks like the reason why I couldn't reproduce is because I did it the second way. The first way, using g77 3.4.4, also failed for me and produced the error message that Tirath reported. Rick |