aboutsummaryrefslogtreecommitdiffstats
path: root/include/subsys.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/subsys.h')
-rw-r--r--include/subsys.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/subsys.h b/include/subsys.h
new file mode 100644
index 0000000..1515293
--- /dev/null
+++ b/include/subsys.h
@@ -0,0 +1,7 @@
+#ifndef __SUBSYS_H
+#define __SUBSYS_H
+
+int __impl_start_subsystem(char *name, int (*fn)(void));
+#define start_subsystem(fn) __impl_start_subsystem(#fn, fn)
+
+#endif