aboutsummaryrefslogtreecommitdiff
path: root/template.c
blob: 98f1b7f943ea29e34dc0cfe20dd719809496bed9 (plain)
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();
}