aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mycobject.c2
-rw-r--r--template.c8
2 files changed, 10 insertions, 0 deletions
diff --git a/mycobject.c b/mycobject.c
index 0020de5..20dad23 100644
--- a/mycobject.c
+++ b/mycobject.c
@@ -15,12 +15,14 @@ typedef struct mycobject
void mycobject_float(t_mycobject *x, t_floatarg f)
{
post("mycobject: %f", f);
+ x=NULL; /* don't warn about unused variables */
}
/* this is called when mycobject gets the message, "rats". */
void mycobject_rats(t_mycobject *x)
{
post("mycobject: rats");
+ x=NULL; /* don't warn about unused variables */
}
/* this is a pointer to the class for "mycobject", which is created in the
diff --git a/template.c b/template.c
new file mode 100644
index 0000000..98f1b7f
--- /dev/null
+++ b/template.c
@@ -0,0 +1,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();
+}