#include "config.h" #ifndef lint static char rcsid[] ATTR_UNUSED = "$Id$"; #endif /* This part of code is a public domain */ #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_UNISTD_H #include #endif /* CONFORMING TO BSD 4.3 */ void usleep(unsigned long usec) { struct timeval tv; tv.tv_sec =usec/1000000; tv.tv_usec=usec%1000000; select(0,NULL,NULL,NULL,&tv); }