summaryrefslogtreecommitdiff
path: root/console/module_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'console/module_main.c')
-rw-r--r--console/module_main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/console/module_main.c b/console/module_main.c
new file mode 100644
index 0000000..521aebc
--- /dev/null
+++ b/console/module_main.c
@@ -0,0 +1,10 @@
+#ifndef __KERNEL_MODULE__
+#define __KERNEL_MODULE__
+#endif
+
+int test_module_init(void) {
+ return 0;
+}
+
+void test_module_exit(void) {
+}