diff --git a/func.c b/func.c
new file mode 100644
index 0000000000000000000000000000000000000000..50206f862e302fbcc3964d26bbadf2338b9d6c62
--- /dev/null
+++ b/func.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+#include "func.h"
+
+void func() {
+    printf("This was printed by the submodule!\n");
+}
diff --git a/func.h b/func.h
new file mode 100644
index 0000000000000000000000000000000000000000..a774443ccfe879178c91bc0c8227275a2f37831e
--- /dev/null
+++ b/func.h
@@ -0,0 +1 @@
+void func();