sbase/sleep.c

22 lines
416 B
C

/* See LICENSE file for copyright and license details. */
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include "util.h"
int
main(int argc, char *argv[])
{
unsigned int seconds;
if(getopt(argc, argv, "") != -1)
exit(EXIT_FAILURE);
if(optind != argc-1)
eprintf("usage: %s seconds\n", argv[0]);
seconds = atoi(argv[optind]);
while((seconds = sleep(seconds)) > 0)
;
return EXIT_SUCCESS;
}