You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pswatch/tests/fake_bins/sleep.c

19 lines
294 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
int sleep_secs;
if (argc != 2 || ( (sleep_secs = atoi(argv[1])) ) <= 0 ) {
fprintf(stderr, "Usage: %s SECS\n", argv[0]);
return EXIT_FAILURE;
}
sleep(sleep_secs);
return EXIT_SUCCESS;
}