sbase/sleep.c

24 lines
484 B
C
Raw Normal View History

2011-05-23 18:00:31 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdlib.h>
#include <unistd.h>
#include "util.h"
int
main(int argc, char *argv[])
{
2011-05-25 10:42:17 +00:00
char *end;
2011-05-23 18:00:31 +00:00
unsigned int seconds;
2011-05-24 10:05:36 +00:00
if(getopt(argc, argv, "") != -1)
exit(EXIT_FAILURE);
if(optind != argc-1)
2011-05-23 18:00:31 +00:00
eprintf("usage: %s seconds\n", argv[0]);
2011-05-25 10:42:17 +00:00
seconds = strtol(argv[optind], &end, 0);
if(*end != '\0')
eprintf("%s: not a number\n", argv[optind]);
2011-05-23 18:00:31 +00:00
while((seconds = sleep(seconds)) > 0)
;
return EXIT_SUCCESS;
}