summaryrefslogtreecommitdiffstats
path: root/src/boot/efi/util.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/boot/efi/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boot/efi/util.h b/src/boot/efi/util.h
index f620f14212..9eef51cc7e 100644
--- a/src/boot/efi/util.h
+++ b/src/boot/efi/util.h
@@ -91,3 +91,5 @@ static inline VOID *mempmem_safe(const VOID *haystack, UINTN haystack_len, const
CHAR8 *p = memmem_safe(haystack, haystack_len, needle, needle_len);
return p ? p + needle_len : NULL;
}
+
+VOID print_at(UINTN x, UINTN y, UINTN attr, const CHAR16 *str);