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

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