blob: 78b94a574bda35b4aa81669425bdbbae0a238508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <efi.h>
#include <efilib.h>
EFI_STATUS
efi_main (EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *systab)
{
InitializeLib(image_handle, systab);
Exit(EFI_SUCCESS, 0, NULL);
return EFI_UNSUPPORTED;
}
|