Fix some things that C++ doesn't like so we don't lose the possibility to use the...
[satune.git] / src / AST / element.c
1 #include "element.h"
2
3 Element *allocElement(Set * s) {
4         Element * tmp=(Element *)ourmalloc(sizeof(Element));
5         tmp->set=s;
6         return tmp;
7 }
8
9 void deleteElement(Element *This) {
10         ourfree(This);
11 }