wip: defining init() function

This commit is contained in:
jlamothe 2023-11-04 00:02:10 +00:00
parent 092ea2b3a3
commit 3c0ab0ecd7
2 changed files with 6 additions and 1 deletions

4
test.c
View File

@ -1,10 +1,12 @@
#include <u.h>
#include <libc.h>
#include "test/init.h"
void
main()
{
print("Tests not implemented yet.\n");
init_test();
exits(0);
}

3
test/init.h Normal file
View File

@ -0,0 +1,3 @@
extern void init_test();
//jl