xref: /netbsd-src/sys/external/bsd/gnu-efi/dist/lib/ia32/initplat.c (revision d1b935f8e85510a16a1b49122bd2ccf5ad7e104c)
1 /*	$NetBSD: initplat.c,v 1.1.1.2 2018/08/16 18:17:47 jmcneill Exp $	*/
2 
3 /*++
4 
5 Copyright (c) 1998  Intel Corporation
6 
7 Module Name:
8 
9     initplat.c
10 
11 Abstract:
12 
13 
14 
15 
16 Revision History
17 
18 --*/
19 
20 #include "lib.h"
21 
22 VOID
InitializeLibPlatform(IN EFI_HANDLE ImageHandle EFI_UNUSED,IN EFI_SYSTEM_TABLE * SystemTable EFI_UNUSED)23 InitializeLibPlatform (
24     IN EFI_HANDLE           ImageHandle EFI_UNUSED,
25     IN EFI_SYSTEM_TABLE     *SystemTable EFI_UNUSED
26     )
27 {
28 }
29 
30