lisp-take-1/value/builtin_lambda/foreach_accessible_subvalue.c

17 lines
290 B
C

#include <debug.h>
#include "foreach_accessible_subvalue.h"
void builtin_lambda_value_foreach_accessible_subvalue(
const struct value* super __attribute((unused)),
void (*callback)(
struct value* subvalue) __attribute((unused)))
{
ENTER;
;
EXIT;
}