WSJT-X/libm65/usleep.c
Joe Taylor fe8d758a65 New Makefile.jtsdk and updated wsjtx.pro allow builds from within
QtCreator, as before.  Now uses gfortran (rather than g95) in Windows.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@3943 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2014-03-28 16:26:20 +00:00

8 lines
100 B
C

#include <unistd.h>
/* usleep(3) */
void usleep_(unsigned long *microsec)
{
usleep(*microsec);
}