mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
12 lines
164 B
Fortran
12 lines
164 B
Fortran
real function sec_midn()
|
|
sec_midn=secnds(0.0)
|
|
return
|
|
end function sec_midn
|
|
|
|
subroutine sleep_msec(n)
|
|
|
|
call usleep(1000*n)
|
|
|
|
return
|
|
end subroutine sleep_msec
|