summaryrefslogtreecommitdiff
path: root/libguile/threads.c
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>1999-12-19 18:24:12 +0000
committerGreg J. Badros <gjb@cs.washington.edu>1999-12-19 18:24:12 +0000
commitbccab498116d003c470ca90bdd06ad112a2ccd7f (patch)
treef487ab0a5436563620da84447c18ca3af0daa43e /libguile/threads.c
parent30939477457667b1307de3d2d3251bcd188ebf1b (diff)
downloadguile-bccab498116d003c470ca90bdd06ad112a2ccd7f.tar.gz
* threads.c, mit-pthreads.c, list.c, coop.c: Remove K&R
prototypes; just use ANSI C prototypes. I'm not sure how mit-pthreads.c ever compiled -- it still doesn't for me, but the normal make procedure does not try to build it anyway (even --with-threads I get the other threads code building) so I'm not too worried about it.
Diffstat (limited to 'libguile/threads.c')
-rw-r--r--libguile/threads.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libguile/threads.c b/libguile/threads.c
index 0bb25512b..ae4b1fb73 100644
--- a/libguile/threads.c
+++ b/libguile/threads.c
@@ -145,14 +145,8 @@ SCM_REGISTER_PROC(s_signal_condition_variable, "signal-condition-variable", 1, 0
-#ifdef __STDC__
void
scm_init_threads (SCM_STACKITEM *i)
-#else
-void
-scm_init_threads (i)
- SCM_STACKITEM *i;
-#endif
{
scm_tc16_thread = scm_make_smob_type ("thread", sizeof (coop_t));
scm_tc16_mutex = scm_make_smob_type ("mutex", sizeof (coop_m));