1 /*
2  * Copyright (c) 2024 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /* Test exporting symbols, imported by other LLEXTs */
8 
9 #include <zephyr/llext/symbol.h>
10 
test_dependency(int a,int b)11 long test_dependency(int a, int b)
12 {
13 	return (long)a * b;
14 }
15 EXPORT_SYMBOL(test_dependency);
16