aboutsummaryrefslogtreecommitdiff
path: root/template.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-08-21 19:14:19 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2010-08-21 19:14:19 +0000
commitef58f9caaa803c1d42b8c5b9b6e0a208968478ac (patch)
tree0f106b201c79d01119ae958d24c15de0472b6e73 /template.c
parent65a9802fa801fafa37f7864eceeed28fafe0c2e0 (diff)
add template.c and fix warning in mycobject.c
svn path=/trunk/externals/template/; revision=13879
Diffstat (limited to 'template.c')
-rw-r--r--template.c8
1 files changed, 8 insertions, 0 deletions
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();
+}