summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c')
-rw-r--r--c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c b/c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c
index eaf15df758..e044f5a6f4 100644
--- a/c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c
+++ b/c/src/lib/libbsp/m68k/efi68k/start68k/start68k.c
@@ -11,8 +11,6 @@ m68k_isr_entry vectors[256];
char * const __argv[]= {"main", ""};
char * const __env[]= {""};
-int main(const int argc, char * const argv[], char * const env[]);
-
/*
* This prototype really should have the noreturn attribute but
* that causes a warning since it appears that the routine does
@@ -65,7 +63,8 @@ void dumby_start() {
/*
* Execute main with arguments argv and environment env
*/
- main(1, __argv, __env);
+ /* main(1, __argv, __env); */
+ boot_card();
reboot();
}