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