diff options
Diffstat (limited to '')
-rw-r--r-- | src/utils.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/utils.c b/src/utils.c index ce9a09f72..7705cf798 100644 --- a/src/utils.c +++ b/src/utils.c @@ -40,20 +40,6 @@ #include <windows.h> #endif -void my_usleep(long usec) -{ -#ifdef WIN32 - Sleep(usec / 1000); -#else - struct timeval tv; - - tv.tv_sec = 0; - tv.tv_usec = usec; - - select(0, NULL, NULL, NULL, &tv); -#endif -} - char *parsePath(char *path) { #ifndef WIN32 |