gnu-efi/apps/tpause.c

10 lines
188 B
C
Raw Normal View History

2013-01-30 16:25:25 -05:00
#include <efi.h>
#include <efilib.h>
EFI_STATUS
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
{
Print(u"Press `q' to quit, any other key to continue:\n");
2023-11-08 18:28:05 +00:00
return EFI_SUCCESS;
2013-01-30 16:25:25 -05:00
}