mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
8 lines
100 B
C
8 lines
100 B
C
|
#include <unistd.h>
|
||
|
|
||
|
/* usleep(3) */
|
||
|
void usleep_(unsigned long *microsec)
|
||
|
{
|
||
|
usleep(*microsec);
|
||
|
}
|