removed u_sleep() as it is no longer used anywhere

This commit is contained in:
Andrew Tridgell
2000-01-23 07:38:20 +00:00
parent 554e0a8dd0
commit 182517e692

11
util.c
View File

@@ -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);
}