summaryrefslogtreecommitdiff
path: root/time/unix/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/unix/time.c')
-rw-r--r--time/unix/time.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index 1c26f8704..e5a069236 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -265,6 +265,8 @@ APR_DECLARE(void) apr_sleep(apr_interval_time_t t)
DosSleep(t/1000);
#elif defined(BEOS)
snooze(t);
+#elif defined(NETWARE)
+ delay(t);
#else
struct timeval tv;
tv.tv_usec = t % APR_USEC_PER_SEC;