sbase/sleep.c

24 lines
484 B
C
Raw Normal View History

2011-05-23 14:00:31 -04: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 06:42:17 -04:00
char *end;
2011-05-23 14:00:31 -04:00
unsigned int seconds;
2011-05-24 06:05:36 -04:00
if(getopt(argc, argv, "") != -1)
exit(EXIT_FAILURE);
if(optind != argc-1)
2011-05-23 14:00:31 -04:00
eprintf("usage: %s seconds\n", argv[0]);
2011-05-25 06:42:17 -04:00
seconds = strtol(argv[optind], &end, 0);
if(*end != '\0')
eprintf("%s: not a number\n", argv[optind]);
2011-05-23 14:00:31 -04:00
while((seconds = sleep(seconds)) > 0)
;
return EXIT_SUCCESS;
}