Cyclone Scheme  0.9
#define return_closcall1 (   td,
  clo,
  a1 
)
Value:
{ \
char top; \
if (stack_overflow(&top, (((gc_thread_data *)data)->stack_limit))) { \
object buf[1]; buf[0] = a1;\
GC(td, clo, buf, 1); \
return; \
} else {\
closcall1(td, (closure) (clo), a1); \
return;\
} \
}
A closed-over function with no variables.
Definition: types.h:1216
void * object
Definition: types.h:29
Definition: types.h:290
#define closcall1(td, clo, a1)
Definition: mstreams.c:16
#define stack_overflow(x, y)
Definition: types.h:454
void GC(void *, closure, object *, int)
Definition: runtime.c:5506