Revision 4570b5ae91677e62a6dc6c55e13a33925a894c83 authored by Brad King on 27 February 2019, 12:54:49 UTC, committed by Brad King on 27 February 2019, 12:54:49 UTC
2 parent s 8455e16 + a0d4430
Raw File
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