source:
code/trunk/src/util/Sleep.h
@
861
Last change on this file since 861 was 790, checked in by nicolasc, 17 years ago | |
---|---|
File size: 192 bytes |
Rev | Line | |
---|---|---|
[708] | 1 | // hack for the usleep/Sleep problem |
[709] | 2 | #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) |
[708] | 3 | # include <windows.h> |
4 | # define usleep(x) Sleep((x)/1000) | |
[709] | 5 | #else |
[708] | 6 | # include <unistd.h> |
7 | #endif |
Note: See TracBrowser
for help on using the repository browser.