]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - win/inspircd_win32wrapper.cpp
Fix excessive snomask sending on fitler add/removal
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.cpp
index ed60a4028ffb1f2dc3720fa1e5059ec435a9969e..f42fa64795ba3f274d83c19a8a4ff3d07237e198 100644 (file)
@@ -684,12 +684,3 @@ int getcpu()
 
        return cpu;
 }
-
-void usleep(unsigned long usecs)
-{
-       if (usecs > 0UL)
-       {
-               unsigned long millis = ((usecs + 999UL) / 1000UL);
-               SleepEx(millis, false);
-       }
-}