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