summaryrefslogtreecommitdiff
path: root/libguile/list.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/list.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/list.c')
-rw-r--r--libguile/list.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libguile/list.c b/libguile/list.c
index eac4c9292..4bad708ad 100644
--- a/libguile/list.c
+++ b/libguile/list.c
@@ -62,15 +62,8 @@
/* creating lists */
/* SCM_P won't help us deal with varargs here. */
-#ifdef __STDC__
SCM
scm_listify (SCM elt, ...)
-#else
-SCM
-scm_listify (elt, va_alist)
- SCM elt;
- va_dcl
-#endif
{
va_list foo;
SCM answer;