1 2 3 4 5 6 7 8
/* glue code for compiling "template" as a library * this calls the setup function of each object */ void mycobject_setup(void); void template_setup(void) { mycobject_setup(); }