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

17 lines
283 B
C

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