X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/dcc875e41e1c9865755dbd0cc839e74ac878910e..66203a982b3d249bafda9b9272c4c103c19e4a9b:/util.c diff --git a/util.c b/util.c index f67dff0e..078d59f5 100644 --- a/util.c +++ b/util.c @@ -367,17 +367,6 @@ int robust_rename(char *from, char *to) return -1; return do_rename(from, to); #endif - } - - -/* sleep for a while via select */ -void u_sleep(int usec) -{ - struct timeval tv; - - tv.tv_sec = 0; - tv.tv_usec = usec; - select(0, NULL, NULL, NULL, &tv); }