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