* gc.c (scm_return_first): Remove #ifdef __STDC__ garbage; Guile
authorJim Blandy <jimb@red-bean.com>
Sat, 10 Oct 1998 12:59:29 +0000 (12:59 +0000)
committerJim Blandy <jimb@red-bean.com>
Sat, 10 Oct 1998 12:59:29 +0000 (12:59 +0000)
requires ANSI now.

libguile/gc.c

index 2fdf8a7..3864430 100644 (file)
@@ -1771,15 +1771,8 @@ scm_remember (ptr)
 {}
 
 
-#ifdef __STDC__
 SCM
 scm_return_first (SCM elt, ...)
-#else
-SCM
-scm_return_first (elt, va_alist)
-     SCM elt;
-     va_dcl
-#endif
 {
   return elt;
 }