* grub-core/kern/misc.c (grub_abort): Make static

This commit is contained in:
Vladimir Serbinenko 2013-10-27 14:13:39 +01:00
parent a60dae7e4e
commit a8f15bceea
7 changed files with 19 additions and 21 deletions

View file

@ -47,18 +47,6 @@ grub_error (grub_err_t n, const char *fmt, ...)
return n;
}
void
grub_fatal (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
grub_vprintf (_(fmt), ap);
va_end (ap);
grub_abort ();
}
void
grub_error_push (void)
{