Home | History | Annotate | Line # | Download | only in apps
      1 /*	$NetBSD: exit.c,v 1.1.1.1 2018/08/16 18:17:47 jmcneill Exp $	*/
      2 
      3 #include <efi.h>
      4 #include <efilib.h>
      5 
      6 EFI_STATUS
      7 efi_main (EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *systab)
      8 {
      9 	InitializeLib(image_handle, systab);
     10 
     11 	Exit(EFI_SUCCESS, 0, NULL);
     12 
     13 	return EFI_UNSUPPORTED;
     14 }
     15