diff options
Diffstat (limited to 'roms/u-boot/lib/efi_selftest/efi_freestanding.c')
-rw-r--r-- | roms/u-boot/lib/efi_selftest/efi_freestanding.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/roms/u-boot/lib/efi_selftest/efi_freestanding.c b/roms/u-boot/lib/efi_selftest/efi_freestanding.c new file mode 100644 index 000000000..4b6c27e99 --- /dev/null +++ b/roms/u-boot/lib/efi_selftest/efi_freestanding.c @@ -0,0 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Library for freestanding binary + * + * Copyright 2019, Heinrich Schuchardt <xypron.glpk@gmx.de> + * + * GCC requires that freestanding programs provide memcpy(), memmove(), + * memset(), and memcmp(). + */ + +#include "../efi_loader/efi_freestanding.c" |