3f8935c3d0
Signed-off-by: Jonathon Reinhart <jonathon.reinhart@gmail.com> Signed-off-by: Nigel Croxon <ncroxon@redhat.com>
20 lines
342 B
C
20 lines
342 B
C
#include "lib.h"
|
|
|
|
VOID
|
|
Exit(
|
|
IN EFI_STATUS ExitStatus,
|
|
IN UINTN ExitDataSize,
|
|
IN CHAR16 *ExitData OPTIONAL
|
|
)
|
|
{
|
|
uefi_call_wrapper(BS->Exit,
|
|
4,
|
|
LibImageHandle,
|
|
ExitStatus,
|
|
ExitDataSize,
|
|
ExitData);
|
|
|
|
// Uh oh, Exit() returned?!
|
|
for (;;) { }
|
|
}
|