gnu-efi/apps/tpause.c

10 lines
188 B
C
Raw Normal View History

2013-01-31 01:25:25 +04: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 21:28:05 +03:00
return EFI_SUCCESS;
2013-01-31 01:25:25 +04:00
}