Skip to content

Commit aafdc21

Browse files
lyakhkv2019i
authored andcommitted
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 <guennadi.liakhovetski@linux.intel.com>
1 parent 8aa90d6 commit aafdc21

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/math/numbers.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ uint32_t crc32(uint32_t base, const void *data, uint32_t bytes)
177177
return ~crc;
178178
}
179179

180+
/* Below we export compiler builtin functions to be used by LLEXT modules */
180181
#if !CONFIG_64BIT
181182
uint64_t __udivdi3(uint64_t a, uint64_t b);
182183
EXPORT_SYMBOL(__udivdi3);

0 commit comments

Comments
 (0)