|
@@ -51,9 +51,8 @@ C_ENTRY(start):
|
|
// should never get here....
|
|
// should never get here....
|
|
jr C_SYMBOL_NAME(abort)
|
|
jr C_SYMBOL_NAME(abort)
|
|
|
|
|
|
-/* Stick in a dummy reference to main(), so that if an application
|
|
+/* Stick in a dummy reference to `main', so that if an application
|
|
- * is linking when the main() function is in a static library (.a)
|
|
+ is linking when the `main' function is in a static library (.a)
|
|
- * we can be sure that main() actually gets linked in */
|
|
+ we can be sure that `main' actually gets linked in. */
|
|
L_dummy_main_reference:
|
|
L_dummy_main_reference:
|
|
- .long main
|
|
+ .long C_SYMBOL_NAME(main)
|
|
-
|
|
|