summaryrefslogtreecommitdiffstats
path: root/src/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/object.c b/src/object.c
new file mode 100644
index 0000000..55ea4af
--- /dev/null
+++ b/src/object.c
@@ -0,0 +1,9 @@
+#include <xas/object.h>
+
+int xas_object_start(xas_object *object) {
+ object->start(object);
+}
+
+int xas_object_stop(xas_object *object) {
+ object->stop(object);
+}