#include #include int main() { MtState *state = mt_initialize("Interface Test");; MtEntity* entity = mt_summon(state); mt_drop(entity); mt_cleanup(state); puts("The program reached the end; this test is considered as passed. SUCCESS!"); puts("Note: A memory leak check utility should be used to verify the success."); return 0; }