sbase/sleep.c

21 lines
402 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[])
{
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-06-10 09:55:01 -04:00
seconds = estrtol(argv[optind], 0);
2011-05-23 14:00:31 -04:00
while((seconds = sleep(seconds)) > 0)
;
return EXIT_SUCCESS;
}