1 /*
2  * Copyright (c) 2024 Arduino SA.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /*
8  * This file contains a simple test extension that defines an entry point
9  * in the .text section. The entry point is never called, but the symbol
10  * address is fixed via a linker call and then checked by the test.
11  */
12 
13 #include <zephyr/llext/symbol.h>
14 
test_entry(void)15 void test_entry(void)
16 {
17 	/* This function is never called */
18 }
19 EXPORT_SYMBOL(test_entry);
20