1 /* 2 * Copyright (c) 2017 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /* hello world example: calling functions from a static library */ 8 9 10 #include <zephyr/kernel.h> 11 #include <stdio.h> 12 13 #include <mylib.h> 14 main(void)15int main(void) 16 { 17 printf("Hello World!\n"); 18 mylib_hello_world(); 19 return 0; 20 } 21