https://git.reactos.org/?p=reactos.git;a=commitdiff;h=af47866f76ecedeee355b…
commit af47866f76ecedeee355bdeed7f83d5466329b93
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Mon Jun 19 20:38:18 2023 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Mon Jun 19 21:09:00 2023 +0200
[FREELDR:UEFI] Fix compilation warning LNK4006.
ntoskrnl.c.obj : warning LNK4006: _KeStallExecutionProcessor@4
already defined in stubs.c.obj; second definition ignored.
---
boot/freeldr/freeldr/arch/uefi/stubs.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/boot/freeldr/freeldr/arch/uefi/stubs.c
b/boot/freeldr/freeldr/arch/uefi/stubs.c
index 513f9f8f85d..48b436bd68d 100644
--- a/boot/freeldr/freeldr/arch/uefi/stubs.c
+++ b/boot/freeldr/freeldr/arch/uefi/stubs.c
@@ -24,13 +24,6 @@ StallExecutionProcessor(ULONG Microseconds)
}
-VOID
-NTAPI
-KeStallExecutionProcessor(ULONG Microseconds)
-{
- StallExecutionProcessor(Microseconds);
-}
-
VOID
UefiVideoGetFontsFromFirmware(PULONG RomFontPointers)
{