Very basic "init"

This commit is contained in:
Gitea 2020-12-01 20:59:33 -06:00
parent ed1241341b
commit 4091148d2e
2 changed files with 115 additions and 0 deletions

9
include/kernel/init.h Executable file
View file

@ -0,0 +1,9 @@
#ifndef _KERNEL_INIT
#define _KERNEL_INIT
#include <stdio.h>
int test_libc(void);
int init(void);
#endif