From 619862070ec25d8acb578ed19fd07ff41ca12388 Mon Sep 17 00:00:00 2001 From: Guennadi Liakhovetski Date: Tue, 25 Feb 2025 14:47:26 +0100 Subject: [PATCH] llext: add a comment where buildin functions are exported src/math/numbers.c has a list of functions, exported for use by LLEXT modules. Add a comment to clarify that. Signed-off-by: Guennadi Liakhovetski --- src/math/numbers.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/math/numbers.c b/src/math/numbers.c index 7558026603b7..961313bc2f7a 100644 --- a/src/math/numbers.c +++ b/src/math/numbers.c @@ -177,6 +177,7 @@ uint32_t crc32(uint32_t base, const void *data, uint32_t bytes) return ~crc; } +/* Below we export compiler builtin functions to be used by LLEXT modules */ #if !CONFIG_64BIT uint64_t __udivdi3(uint64_t a, uint64_t b); EXPORT_SYMBOL(__udivdi3);