From bab00d828873d96bd237d9b96426f7b9a99b1393 Mon Sep 17 00:00:00 2001 From: Adam Newhouse <arn2@illinois.edu> Date: Tue, 17 Sep 2019 18:23:08 -0500 Subject: [PATCH] Add simple func --- func.c | 6 ++++++ func.h | 1 + 2 files changed, 7 insertions(+) create mode 100644 func.c create mode 100644 func.h diff --git a/func.c b/func.c new file mode 100644 index 0000000..50206f8 --- /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 0000000..a774443 --- /dev/null +++ b/func.h @@ -0,0 +1 @@ +void func(); -- GitLab