/* See LICENSE file for copyright and license details. */ #include #include #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 = estrtol(argv[optind], 0); while((seconds = sleep(seconds)) > 0) ; return EXIT_SUCCESS; }