1 /* 2 * Copyright (c) 2024 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 #include <zephyr/llext/symbol.h> 9 10 #include <app_api.h> 11 start(int bar)12int start(int bar) 13 { 14 printk("foo(%d) is %d\n", bar, foo(bar)); 15 return 0; 16 } 17 EXPORT_SYMBOL(start); 18