summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-26 00:01:10 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-26 00:01:10 +0000
commitdcb0911f40df4cfc522b84f3fa6496e6c27b1249 (patch)
tree8b0f2237f21a0543f83b60136ba3968248b5fc09
parent1f7f41e4894f5ccc4de3f2b63df44467b8d257c4 (diff)
downloadguile-dcb0911f40df4cfc522b84f3fa6496e6c27b1249.tar.gz
* threads-plugin.h: replace usage of struct timespect with
scm_t_timespec.
-rw-r--r--libguile/threads-plugin.h2
1 files changed, 1 insertions, 1 deletions
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;