/*
**	SNOOZE(msec) -- sleep for msec milliseconds, using select
**	psl 12/88
*/
#include	<sys/time.h>

snooze(msec)
{
	struct timeval tout;

	tout.tv_sec = msec / 1000;
	tout.tv_usec = (msec % 1000) * 1000;
	select(0, 0, 0, 0, &tout);
}
