From 0a446e81ed77c20aa87563d45ef0ef8f5fa283d8 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sat, 18 Nov 2023 10:53:09 +0100 Subject: Prefix some compat symbols with libressl_ See #928. This isn't a full fix, but should remove much of the friction already. --- include/compat/stdio.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/compat/stdio.h') diff --git a/include/compat/stdio.h b/include/compat/stdio.h index d5725c9..4ddd63a 100644 --- a/include/compat/stdio.h +++ b/include/compat/stdio.h @@ -20,7 +20,9 @@ #ifndef HAVE_ASPRINTF #include +#define vasprintf libressl_vasprintf int vasprintf(char **str, const char *fmt, va_list ap); +#define asprintf libressl_asprintf int asprintf(char **str, const char *fmt, ...); #endif -- cgit v1.2.3-55-g6feb