From 3c0ab0ecd77d6895173cfe7988759b009c116aa4 Mon Sep 17 00:00:00 2001 From: jlamothe Date: Sat, 4 Nov 2023 00:02:10 +0000 Subject: [PATCH] wip: defining init() function --- test.c | 4 +++- test/init.h | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 test/init.h diff --git a/test.c b/test.c index 61c6cf0..e948827 100644 --- a/test.c +++ b/test.c @@ -1,10 +1,12 @@ #include #include +#include "test/init.h" + void main() { - print("Tests not implemented yet.\n"); + init_test(); exits(0); } diff --git a/test/init.h b/test/init.h new file mode 100644 index 0000000..ed7c33b --- /dev/null +++ b/test/init.h @@ -0,0 +1,3 @@ +extern void init_test(); + +//jl