@@ -30,9 +30,7 @@ extern int sleep_main(int argc, char **argv)
usage(sleep_usage);
}
if(sleep(atoi(*(++argv)))!=0){
perror("sleep");
returnEXIT_FAILURE;
}
if(sleep(atoi(*(++argv)))!=0)
perror_msg_and_die("sleep");
returnEXIT_SUCCESS;
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.