#include #include #include #include "struct.h" #include "new.h" struct number* new_number(void) { ENTER; struct number* this = smalloc(sizeof(*this)); mpq_init(this->number); this->refcount = 1; EXIT; return this; }