19 lines
270 B
C
19 lines
270 B
C
|
|
#include <debug.h>
|
|
|
|
#include <string/free.h>
|
|
|
|
#include "struct.h"
|
|
#include "free.h"
|
|
|
|
void free_variable_expression(
|
|
struct expression* super)
|
|
{
|
|
ENTER;
|
|
|
|
struct variable_expression* this = (void*) super;
|
|
|
|
free_string(this->name);
|
|
|
|
EXIT;
|
|
}
|