I'm running Pro Fortran 9.5 on a Mac G4 under OS 10.4.11. I'm porting over a code (from Pro Fortran 9.2) that uses GetTime to retrieve year, month, day, hour, minutes and seconds as a structure of integer*2 numbers. Under Pro Fortran 9.2 I would use DATETIMEUTILS.mod to declare the structure DateTimeRec through a record statement of the form:
record / DateTimeRec / DateTime
where the year is accessed by DateTime.year.
My problem is that Pro Fortran 9.5 is not behaving the same as Pro Fortran 9.2. My question for this forum is how does one use GetTime in Pro Fortran 9.5?