]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2006-04-25 Hollis Blanchard <hollis@penguinppc.org>
authorhollisb <hollisb@localhost>
Tue, 25 Apr 2006 23:47:48 +0000 (23:47 +0000)
committerhollisb <hollisb@localhost>
Tue, 25 Apr 2006 23:47:48 +0000 (23:47 +0000)
* kern/misc.c (abort): New alias for grub_abort.

ChangeLog
kern/misc.c

index 0d62c22dab1bac9e67983c75456a374c33df8401..b0181fee017ddf2eaa381265dce1bdac3cad8e4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 7617c031bc9bd26d585393a783e99757cce0ef6f..2ec65e0ea8b064d261b8a8f410f69b90d7386672 100644 (file)
@@ -970,3 +970,5 @@ grub_abort (void)
 
   grub_exit ();
 }
+/* GCC emits references to abort().  */
+void abort (void) __attribute__ ((alias ("grub_abort")));