1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-11-14 21:25:00 -05:00
gc_n64_usb-v3/tool/sleep.c

7 lines
60 B
C
Raw Normal View History

2015-10-24 15:04:38 -04:00
#include <windows.h>
void sleep(int s)
{
Sleep(s*1000);
}