mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-07-15 12:39:06 +00:00
20 lines
361 B
C
20 lines
361 B
C
// 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
|