/*
 * Copyright 1988, 1989, 1990, 1991 Massachusetts Institute of Technology
 */
#include <signal.h>
#include <sys/time.h>
#include <stdio.h>

mpause( interval )
	
	int	interval;
{
  struct timeval to;
  to.tv_sec = interval/1000;
  to.tv_usec = (interval%1000) * 1000; /* msec to usec */
  select(0,0,0,0,&to);
  return(0);
}
/* end mpause */
