blob: ef24d25164e25c0da2ede10d8bad64bc5b8d338c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $NetBSD: initplat.c,v 1.1.1.1 2021/09/30 18:50:09 jmcneill Exp $ */
// SPDX-License-Identifier: GPL-2.0+
#include "lib.h"
VOID
InitializeLibPlatform (
IN EFI_HANDLE ImageHandle EFI_UNUSED,
IN EFI_SYSTEM_TABLE *SystemTable EFI_UNUSED
)
{
}
|