mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-24 13:08:34 -04:00
6 lines
84 B
C
6 lines
84 B
C
|
/* usleep(3) */
|
||
|
void usleep_(unsigned long *microsec)
|
||
|
{
|
||
|
usleep(*microsec);
|
||
|
}
|