20 lines
276 B
C
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;
|
|
}
|
|
|