Release 960314
[wine.git] / misc / port.c
blob751750c21141b84a231e9f5c4101ccbf657070d8
1 #include <sys/time.h>
3 #ifndef HAVE_USLEEP
5 unsigned int usleep (unsigned int useconds)
7 struct timeval delay;
9 delay.tv_sec = 0;
10 delay.tv_usec = useconds;
12 (void) select (0, (fd_set *) NULL, (fd_set *) NULL, (fd_set *) NULL,
13 &delay);
14 return 0;
17 #endif /* HAVE_USLEEP */