1 /*
2  * Copyright (c) 2024 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /*
8  * This very simple hello world C code can be used while learning about llext.
9  */
10 
11 extern void printk(const char *fmt, ...);
12 
hello_world(void)13 void hello_world(void)
14 {
15 	printk("hello world\n");
16 }
17