blob: 034977cca2948fa56433961e1ef9ca5ca3725df1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
/*
* efistdarg.h - AAAARGGGG
* Copyright Peter Jones <pjones@redhat.com>
*/
#ifndef SHIM_UNIT_TEST
#ifndef _EFISTDARG_H_
#define _EFISTDARG_H_
#ifndef GNU_EFI_USE_EXTERNAL_STDARG
#define GNU_EFI_USE_EXTERNAL_STDARG
#endif
#include <stdarg.h>
#endif /* !_EFISTDARG_H_ */
#endif
// vim:fenc=utf-8:tw=75:noet
|