mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-28 04:13:05 +00:00
17 lines
223 B
C
17 lines
223 B
C
#include <config.h>
|
|
#include <grub/emu/misc.h>
|
|
|
|
/* grub-emu-lite supports dynamic module loading, so it won't have any
|
|
embedded modules. */
|
|
void
|
|
grub_init_all(void)
|
|
{
|
|
return;
|
|
}
|
|
|
|
void
|
|
grub_fini_all(void)
|
|
{
|
|
return;
|
|
}
|