Cyclone Scheme  0.9
#define do_apply_va
Value:
va_start(ap, func); \
if (argc == 2) { \
lis = va_arg(ap, object); \
} else { \
lis = alloca(sizeof(pair_type)); \
tmp = va_arg(ap, object); \
set_pair(lis, tmp, NULL); \
prev = lis; \
for (i = 2; i < argc - 1; i++) { \
pair_type *next = alloca(sizeof(pair_type)); \
tmp = va_arg(ap, object); \
set_pair(next, tmp, NULL); \
cdr(prev) = next; \
prev = next; \
} \
tmp = va_arg(ap, object); \
cdr(prev) = tmp; \
} \
va_end(ap);
The pair (cons) type.
Definition: types.h:1080
#define Cyc_check_pair_or_null(d, obj)
Definition: runtime.h:72
#define cdr(x)
Definition: types.h:1138
#define set_pair(n, a, d)
Definition: types.h:1098