mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-04 02:18:37 -04:00
5 lines
82 B
Fortran
5 lines
82 B
Fortran
|
subroutine sleep_msec(n)
|
||
|
call usleep(n*1000)
|
||
|
return
|
||
|
end subroutine sleep_msec
|