mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
6 lines
84 B
C
6 lines
84 B
C
|
/* usleep(3) */
|
||
|
void usleep_(unsigned long *microsec)
|
||
|
{
|
||
|
usleep(*microsec);
|
||
|
}
|