From e9d55ad423318a751621e3537b7fed701ffbb467 Mon Sep 17 00:00:00 2001 From: Mattia Pennasilico Date: Fri, 21 Nov 2025 15:14:49 +0100 Subject: [PATCH] llext: add vsnprintf to exported symbols vsnprintf is needed to compile Arduino_ConnectionHandler library --- loader/llext_exports.c | 1 + 1 file changed, 1 insertion(+) diff --git a/loader/llext_exports.c b/loader/llext_exports.c index c9bbc142..6ea00527 100644 --- a/loader/llext_exports.c +++ b/loader/llext_exports.c @@ -231,6 +231,7 @@ EXPORT_SYMBOL(printf); EXPORT_SYMBOL(sprintf); EXPORT_SYMBOL(snprintf); EXPORT_SYMBOL(cbvprintf); +EXPORT_SYMBOL(vsnprintf); FORCE_EXPORT_SYM(abort); #if defined(CONFIG_RING_BUFFER)