summaryrefslogtreecommitdiffstats
path: root/memtestEDK/Memtest/SingleComponents/TestDefs.c
blob: 8a87f9861f2c6763af7c0c2d75e5d5db4d0d3f34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/UefiApplicationEntryPoint.h>

#include "defs.h"


EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  Print(L"Test for defs\n\n");


  Print(L"Test finished.\n");

  return EFI_SUCCESS;
}