Move generic start code and memset into arch/generic.h

This commit is contained in:
2025-05-02 11:36:05 -04:00
parent ab5dd8d9fb
commit d47709b03c
7 changed files with 40 additions and 25 deletions

View File

@@ -60,13 +60,3 @@ int main() {
return 69;
}
void __libc_start_main() {exit(main());}
void _start() {
__libc_start_main();
}
void __start() {
_start();
}