repo.or.cz
/
io
/
quag.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updating built in Io code to use += instead of x = x + y
[io/quag.git]
/
libs
/
basekit
/
source
/
PortableUsleep.h
blob
4062a2a4e493aed88df8f3f713657338d4468139
1
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
10