mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 16:43:08 +02:00
18 lines
247 B
C
18 lines
247 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#define SLEEP_S(s) Sleep((s) * 1000)
|
|
#else
|
|
#include <unistd.h>
|
|
#define SLEEP_S(s) sleep(s)
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
printf("Henlo\n");
|
|
SLEEP_S(20);
|
|
return 0;
|
|
}
|