#include #include #include #include "struct.h" #include "free.h" void free_environment( struct environment* this) { ENTER; if (this && !--this->refcount) { free_environment(this->fallback); avl_free_tree(this->tree); free(this); } EXIT; }