2513fe5422122e0d512325b5e3465cc72215a31d
[satune.git] / src / 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 }