Sign in
third-party-mirror
/
mingw-w64
/
53b69ff3e3f267ccab95a84f9cc0be133f996eb1
/
.
/
mingw-w64-crt
/
misc
/
sleep.c
blob: 7fec666c3536ace07a496750400509def6a54c54 [
file
] [
log
] [
blame
]
#include
<signal.h>
#include
<time.h>
#include
<unistd.h>
#include
<errno.h>
#include
<windows.h>
unsigned
int
sleep
(
unsigned
int
seconds
)
{
Sleep
(
seconds
*
1000
);
return
0
;
}