From dcb0911f40df4cfc522b84f3fa6496e6c27b1249 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Wed, 26 Mar 2003 00:01:10 +0000 Subject: [PATCH] * threads-plugin.h: replace usage of struct timespect with scm_t_timespec. --- libguile/threads-plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/threads-plugin.h b/libguile/threads-plugin.h index 3e0eb2096..384838055 100644 --- a/libguile/threads-plugin.h +++ b/libguile/threads-plugin.h @@ -85,7 +85,7 @@ extern scm_t_rec_mutex_unlock scm_i_plugin_rec_mutex_unlock; typedef int (*scm_t_cond_wait) (scm_t_cond *, scm_t_mutex *); typedef int (*scm_t_cond_timedwait) (scm_t_cond *, scm_t_mutex *, - const struct timespec *); + const scm_t_timespec *); extern scm_t_cond_wait scm_i_plugin_cond_wait; extern scm_t_cond_timedwait scm_i_plugin_cond_timedwait;