This website requires JavaScript.
Explore
Help
Sign In
wash
/
mango
Watch
1
Star
0
Fork
0
You've already forked mango
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
273557fa9f2bbb72cf38903ae70477aebd99962a
mango
/
init
/
init.c
7 lines
64 B
C
Raw
Normal View
History
Unescape
Escape
kernel: separate headers into kernel and user headers all kernel headers have been moved from include/mango to include/kernel and include definitions that are only relevant to kernel-space. any definitions that are relevant to both kernel- and user-space (i.e. type definitions, syscall IDs) have been moved to include/mango within libmango.
2026-02-19 18:54:48 +00:00
#
include
<kernel/init.h>
kernel: implement initcalls and a testing system
2023-02-26 10:05:39 +00:00
Implemented some basic libc functions and a text console
2022-12-21 08:29:33 +00:00
int
do_initcalls
(
void
)
{
Kernel is now compiled with -Wall -Werror -pedantic
2022-12-28 18:40:41 +00:00
return
0
;
Implemented some basic libc functions and a text console
2022-12-21 08:29:33 +00:00
}
Reference in New Issue
Copy Permalink