blob: 53fe5a0c2bf8b6085a208ee9c83bb2b53a54c627 [file] [log] [blame]
#include "internal.h"
#include <stdio.h>
const char sleep_usage[] = " NUMBER\n"
"Pause for NUMBER seconds.\n";
extern int
sleep_main(int argc, char * * argv)
{
if ( (argc < 2) || (**(argv+1) == '-') ) {
fprintf(stderr, "Usage: %s %s", *argv, sleep_usage);
exit(FALSE);
}
if ( sleep(atoi(*(++argv))) != 0 ) {
perror( "sleep");
exit (FALSE);
} else
exit (TRUE);
}