https://github.com/Kitware/CMake
Raw File
Tip revision: aaa5eab410c2e3fe41ebf7a2316be9c51572dbd2 authored by Brad King on 20 August 2020, 12:20:32 UTC
CMake 3.18.2
Tip revision: aaa5eab
sleep.c
#if defined(_WIN32)
#  include <windows.h>
#else
#  include <unistd.h>
#endif

/* sleeps for n seconds, where n is the argument to the program */
int main(int argc, char** argv)
{
  int time;
  if (argc > 1) {
    time = atoi(argv[1]);
  }
#if defined(_WIN32)
  Sleep(time * 1000);
#else
  sleep(time);
#endif
  return 0;
}
back to top