summaryrefslogtreecommitdiff
path: root/mysys/my_sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'mysys/my_sleep.c')
-rw-r--r--mysys/my_sleep.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/mysys/my_sleep.c b/mysys/my_sleep.c
index 87170e4af41..6d1bdd5dc55 100644
--- a/mysys/my_sleep.c
+++ b/mysys/my_sleep.c
@@ -20,9 +20,7 @@
void my_sleep(ulong m_seconds)
{
-#ifdef __NETWARE__
- delay(m_seconds/1000+1);
-#elif defined(__WIN__)
+#if defined(__WIN__)
Sleep(m_seconds/1000+1); /* Sleep() has millisecond arg */
#elif defined(HAVE_SELECT)
struct timeval t;