blob: f034a7fbb4ed956ded9a860feaf8ba85c69beac0 [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/* hello world example: calling functions from a static library */
#include <zephyr/kernel.h>
#include <stdio.h>
#include <mylib.h>
void main(void)
{
printf("Hello World!\n");
mylib_hello_world();
}