mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-07-15 10:39:08 +00:00
14 lines
219 B
C
14 lines
219 B
C
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
/*
|
|
* stdio.h - sigh
|
|
*/
|
|
#ifdef SHIM_UNIT_TEST
|
|
#include_next <stdio.h>
|
|
#else
|
|
#ifndef _STDIO_H
|
|
#define _STDIO_H
|
|
|
|
#endif /* !_STDIO_H */
|
|
#endif
|
|
// vim:fenc=utf-8:tw=75:noet
|