moved everything to chookspace
This commit is contained in:
19
gnu-efi/lib/exit.c
Normal file
19
gnu-efi/lib/exit.c
Normal file
@@ -0,0 +1,19 @@
|
||||
#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 (;;) { }
|
||||
}
|
||||
Reference in New Issue
Block a user