#if defined(_WIN32) #include #else #include #endif int main() { #if defined(_WIN32) Sleep(10000); #else sleep(10); #endif return 0; }