blob: 205adf21ece50f89dd79da0ab96b9ed43905903f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* vi: set sw=4 ts=4:
*
* sleep.c - Wait for a number of seconds.
*
* Copyright 2007 Rob Landley <rob@landley.net>
*
* See http://www.opengroup.org/onlinepubs/009695399/utilities/sleep.html
config SLEEP
bool "sleep"
default y
help
usage: sleep SECONDS
Wait a decimal integer number of seconds.
*/
#include "toys.h"
void sleep_main(void)
{
toys.exitval = sleep(atol(*toys.optargs));
}
|