blob: 081c73c72f297b611b6872d5363b7e7a9f8a5c37 [file] [log] [blame]
program
implicit none
double precision t, mpi_wtime
external mpi_wtime
t = 0.0
t = mpi_wtime()
print *, t
t = mpi_wtime()
print *, t
end