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