Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
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
;
}