blob: cdcf1c3f732ebcd724763b8b0d4d21504eb325b5 [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>
int main(void)
{
printf("Hello World!\n");
mylib_hello_world();
return 0;
}