view toys/sleep.c @ 226:6aac63925eff

Update web pages.
author Rob Landley <rob@landley.net>
date Sat, 05 Jan 2008 18:09:49 -0600
parents 3227c5316260
children d4176f3f3835
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * sleep.c - Wait for a number of seconds.
 *
 * See http://www.opengroup.org/onlinepubs/009695399/utilities/sleep.html
 */

#include "toys.h"

void sleep_main(void)
{
	toys.exitval = sleep(atol(*toys.optargs));
}