diff src/cutils.c @ 4067:e97fb79fc1d5

[project @ 2002-09-26 22:43:25 by jwe]
author jwe
date Thu, 26 Sep 2002 22:43:25 +0000
parents fa811b863d07
children babc519f245b
line wrap: on
line diff
--- a/src/cutils.c
+++ b/src/cutils.c
@@ -72,6 +72,12 @@
 }
 
 void
+octave_sleep (unsigned int seconds)
+{
+  sleep (seconds);
+}
+
+void
 octave_usleep (unsigned int useconds)
 {
   unsigned int sec = useconds / 1000000;