2006-04-25 Hollis Blanchard <hollis@penguinppc.org>

* kern/misc.c (abort): New alias for grub_abort.
This commit is contained in:
hollisb 2006-04-25 23:47:48 +00:00
parent 2965c7cc2d
commit 71538dff79
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-04-25 Hollis Blanchard <hollis@penguinppc.org>
* kern/misc.c (abort): New alias for grub_abort.
2006-04-25 Yoshinori K. Okuji <okuji@enbug.org>
A new machine-specific function "grub_machine_set_prefix" is

View File

@ -970,3 +970,5 @@ grub_abort (void)
grub_exit ();
}
/* GCC emits references to abort(). */
void abort (void) __attribute__ ((alias ("grub_abort")));