blob: c2ace5d60e2fadfe08323f5e8a73021d2eaf8237 [file] [log] [blame] [raw]
#include <windows.h>
unsigned int sleep(unsigned int seconds) {
Sleep(seconds * 1000);
return 0;
}