Updating built in Io code to use += instead of x = x + y
[io/quag.git] / libs / basekit / source / PortableUsleep.h
blob4062a2a4e493aed88df8f3f713657338d4468139
2 #ifdef ON_WINDOWS
3 #include <windows.h>
4 #ifndef WIN32
5 int usleep (unsigned int us);
6 #endif
7 #else
8 #include <unistd.h>
9 #endif