* threads.h (scm_thread_sleep, scm_thread_usleep): Fixed
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Wed, 28 Oct 1998 10:32:03 +0000 (10:32 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Wed, 28 Oct 1998 10:32:03 +0000 (10:32 +0000)
declarations. (Thanks to Russ McManus.)

libguile/ChangeLog
libguile/threads.h

index d79d45b..504f81f 100644 (file)
@@ -1,3 +1,8 @@
+1998-10-28  Mikael Djurfeldt  <mdj@mdj.nada.kth.se>
+
+       * threads.h (scm_thread_sleep, scm_thread_usleep): Fixed
+       declarations. (Thanks to Russ McManus.)
+
 1998-10-26  Mikael Djurfeldt  <mdj@barbara.nada.kth.se>
 
        * numbers.c (num2long): As a software archeologist, I'm proud of
index 9a25e17..0385add 100644 (file)
@@ -78,8 +78,8 @@ SCM scm_spawn_thread (scm_catch_body_t body, void *body_data,
 
 /* These are versions of the ordinary sleep and usleep functions,
    that play nicely with the thread system.  */
-SCM unsigned long scm_thread_sleep (unsigned long);
-SCM unsigned long scm_thread_usleep (unsigned long);
+SCM scm_thread_sleep (unsigned long);
+SCM scm_thread_usleep (unsigned long);
 
 
 /* The C versions of the Scheme-visible thread functions.  */