lambda-calc-1/statement/error/free.c
2025-01-20 13:40:51 -06:00

20 lines
276 B
C

#include <debug.h>
#include <statement/free.h>
#include "struct.h"
#include "free.h"
void free_error_statement(
struct statement* super)
{
ENTER;
struct error_statement* this = (void*) super;
free_statement(this->substatement);
EXIT;
}