This website requires JavaScript.
Explore
Help
Sign In
Bananymous
/
banan-os
Watch
1
Star
1
Fork
You've already forked banan-os
1
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
a22caa38d2
banan-os
/
userspace
/
test.c
9 lines
103 B
C
Raw
Normal View
History
Unescape
Escape
Kernel: Usespace programs are now ran through ELF files only 64 bit elf files are supported for now.
2023-04-22 15:35:32 +03:00
#
include
<stdio.h>
LibELF: Start implementing elf library
2023-04-12 22:20:18 +03:00
int
main
(
)
{
LibC: Write mostly functioning stdio
2023-04-23 14:32:37 +03:00
if
(
printf
(
"
Hello %s!
"
,
"
World
"
)
=
=
-
1
)
perror
(
NULL
)
;
LibELF: Start implementing elf library
2023-04-12 22:20:18 +03:00
return
0
;
}