--- rxvt-unicode/src/misc.C 2006/01/20 10:27:08 1.36 +++ rxvt-unicode/src/misc.C 2006/01/21 23:50:33 1.37 @@ -531,24 +531,4 @@ } #endif -// should not be used in interactive programs, for obvious reasons -void rxvt_usleep (int usecs) NOTHROW -{ -#if HAVE_NANOSLEEP - struct timespec ts; - - ts.tv_sec = 0; - ts.tv_nsec = usecs * 1000; - nanosleep (&ts, NULL); -#else - /* use select for timing */ - struct timeval tv; - - tv.tv_sec = 0; - tv.tv_usec = usecs; - select (0, NULL, NULL, NULL, &tv); -#endif -} - -/*----------------------- end-of-file (C source) -----------------------*/