mirror of https://github.com/acidanthera/audk.git
19 lines
266 B
C
19 lines
266 B
C
|
/** @file
|
||
|
This library contains a dummy function to pass build.
|
||
|
|
||
|
Copyright (c) 2022, Intel Corporation. All rights reserved.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
#include <Base.h>
|
||
|
|
||
|
/**
|
||
|
Dummy function.
|
||
|
**/
|
||
|
VOID
|
||
|
Dummy (
|
||
|
VOID
|
||
|
)
|
||
|
{
|
||
|
}
|