Hi everyone. I use Plato 4.2.0 recently dowloaded in my laptop, Windows Vista. GET_FILES@ is a standard subroutine in F77 language also carried on in FTN95. So I am not sure what's going on. I use the following subroutine call and produces nothing (no compiling errors either, only warnings) although it should give me the files names in current working directory. Any suggestions? Your help is very much appreciated.
subroutine GET_FILES@(wildcard, files, maxfiles, nfiles, error_code) character (len=*), intent(in) :: wildcard integer (kind=2), intent(in) :: maxfiles character(256), intent(out) :: files(maxfiles) integer (kind=2), intent(out) :: nfiles, error_code end subroutine GET_FILES@