summaryrefslogtreecommitdiff
path: root/libguile/null-threads.h
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-25 23:57:38 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-25 23:57:38 +0000
commitbf44fc4dbb41946283beb9c604b857adfbab59d4 (patch)
tree1ab5f574237ae4541b6a259cdd80d8fcc72415f2 /libguile/null-threads.h
parent83b429ed5ddf43fd1f660e975e1417539a4e4228 (diff)
downloadguile-bf44fc4dbb41946283beb9c604b857adfbab59d4.tar.gz
* null-threads.h: replace usage of struct timespect with
scm_t_timespec.
Diffstat (limited to 'libguile/null-threads.h')
-rw-r--r--libguile/null-threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/null-threads.h b/libguile/null-threads.h
index 14d40eea2..458f123e9 100644
--- a/libguile/null-threads.h
+++ b/libguile/null-threads.h
@@ -123,7 +123,7 @@ SCM_API void scm_cond_init (scm_t_cond *cv);
SCM_API void scm_cond_destroy (scm_t_cond *cv);
SCM_API void scm_cond_wait (scm_t_cond *cv, scm_t_mutex *mx);
SCM_API int scm_cond_timedwait (scm_t_cond *cv, scm_t_mutex *mx,
- struct timespec *abstime);
+ scm_t_timespec *abstime);
SCM_API void scm_cond_signal (scm_t_cond *cv);
SCM_API void scm_cond_broadcast (scm_t_cond *cv);