1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-10-31 15:45:09 -04:00
gc_n64_usb-v3/tool/sleep.c
2015-10-24 15:04:38 -04:00

7 lines
60 B
C

#include <windows.h>
void sleep(int s)
{
Sleep(s*1000);
}